mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-03 11:40:11 +03:00
Add missing comma in the dependency list
This commit is contained in:
parent
3df90307a7
commit
98449bb32f
3
setup.py
3
setup.py
|
@ -197,7 +197,8 @@ def main():
|
||||||
'telethon_generator/parser/tl_object.py',
|
'telethon_generator/parser/tl_object.py',
|
||||||
'telethon_generator/parser/tl_parser.py',
|
'telethon_generator/parser/tl_parser.py',
|
||||||
]),
|
]),
|
||||||
install_requires=['pyaes', 'rsa', 'async_generator'
|
# We must be careful not to miss any comma here... v
|
||||||
|
install_requires=['pyaes', 'rsa', 'async_generator',
|
||||||
'typing' if version_info < (3, 5, 2) else ""],
|
'typing' if version_info < (3, 5, 2) else ""],
|
||||||
extras_require={
|
extras_require={
|
||||||
'cryptg': ['cryptg']
|
'cryptg': ['cryptg']
|
||||||
|
|
Loading…
Reference in New Issue
Block a user