Skip to content

Instantly share code, notes, and snippets.

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

  • Save hoosnick/43a3ef9170a7f509c0c08abd0421c3d3 to your computer and use it in GitHub Desktop.

Select an option

Save hoosnick/43a3ef9170a7f509c0c08abd0421c3d3 to your computer and use it in GitHub Desktop.
Code from Telegraph article
from typing import Final
class Point:
  def __init__(self, x: int, y: int):
    self.x: Final[int] = x
    self.y: Final[int] = y
p1 = Point(10, 20)
# Координатани ўзгартиришга уриниш
p1.x = 30 # <-- MyPy бу ерда ҳам хато курсатади!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment