Skip to content

Instantly share code, notes, and snippets.

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

  • Save hoosnick/3129249cc5c1415b679c27fd94b76e13 to your computer and use it in GitHub Desktop.

Select an option

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