reogranized imports

This commit is contained in:
2024-03-24 11:33:34 +01:00
parent dd2ffebca2
commit 5a4d30e162
9 changed files with 25 additions and 8 deletions

2
vec.py
View File

@@ -1,6 +1,8 @@
from __future__ import annotations
from math import sqrt
class Vec:
def __init__(self, x: float = 0, y: float = 0) -> None:
self.x = x