Created
August 20, 2025 18:30
-
-
Save hoosnick/52b8e6b3af12d379242ee75f49ad993d to your computer and use it in GitHub Desktop.
Code from Telegraph article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Final | |
| ADMIN_IDS: Final[list[int]] = [101, 202, 303] | |
| # list ичидаги маълумотни ўзгартириш | |
| ADMIN_IDS.append(404) # <-- MyPy'ни бунга эътирози йўқ! | |
| print(ADMIN_IDS) # Натижа: [101, 202, 303, 404] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment