Created
August 20, 2025 18:30
-
-
Save hoosnick/3129249cc5c1415b679c27fd94b76e13 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 | |
| @final | |
| class SuperSecureConnection: | |
| def connect(self): | |
| print("Super secure connection established.") | |
| # Финал классдан ворис олишга уриниш | |
| class MyConnection(SuperSecureConnection): # <-- MyPy хато беради! | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment