mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-06 15:14:52 +00:00
Use list instead of set
This commit is contained in:
parent
500ec09b47
commit
8b364202c3
1 changed files with 1 additions and 1 deletions
|
|
@ -906,7 +906,7 @@ class Client(Methods, BaseClient):
|
|||
"More info: https://docs.pyrogram.ml/start/ProjectSetup#configuration"
|
||||
)
|
||||
|
||||
for option in {"app_version", "device_model", "system_version", "lang_code"}:
|
||||
for option in ["app_version", "device_model", "system_version", "lang_code"]:
|
||||
if getattr(self, option):
|
||||
pass
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue