2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 06:16:06 +00:00

Warn users in case they try to use base types as arguments

This commit is contained in:
Dan
2020-08-29 15:12:45 +02:00
parent 4dd068643d
commit 22d9077e2b
2 changed files with 8 additions and 1 deletions

View File

@@ -336,7 +336,8 @@ def start(format: bool = False):
docstring=docstring,
name=type,
qualname=qualtype,
types=", ".join([f"raw.types.{c}" for c in constructors])
types=", ".join([f"raw.types.{c}" for c in constructors]),
doc_name=snake(type).replace("_", "-")
)
)