Skip to content

Instantly share code, notes, and snippets.

@hoosnick
Created August 20, 2025 18:30
Show Gist options
  • Select an option

  • Save hoosnick/52b8e6b3af12d379242ee75f49ad993d to your computer and use it in GitHub Desktop.

Select an option

Save hoosnick/52b8e6b3af12d379242ee75f49ad993d to your computer and use it in GitHub Desktop.
Code from Telegraph article
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