just some clean up stuff

This commit is contained in:
0x01fe 2024-12-08 14:39:16 -06:00
parent 465aaf8b24
commit a5f37defce
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__

View File

@ -30,5 +30,3 @@ class Vector:
def distance(self, other: Self) -> int: def distance(self, other: Self) -> int:
return math.sqrt((other.x - self.x)**2 + (other.y - self.y)**2) return math.sqrt((other.x - self.x)**2 + (other.y - self.y)**2)