mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 01:16:35 +03:00
Fix constructor count showing as negative
This commit is contained in:
parent
81dfcc4102
commit
ef3cdf9e23
|
@ -351,7 +351,7 @@ def generate_documentation(scheme_file):
|
|||
replace_dict = {
|
||||
'type_count': len(types),
|
||||
'method_count': len(methods),
|
||||
'constructor_count': len(methods) - len(tlobjects),
|
||||
'constructor_count': len(tlobjects) - len(methods),
|
||||
'layer': layer,
|
||||
|
||||
'request_names': request_names,
|
||||
|
|
Loading…
Reference in New Issue
Block a user