diff options
| author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-11-03 23:10:04 +0200 |
|---|---|---|
| committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-11-03 23:10:04 +0200 |
| commit | d1c404fe8eac3c743004a9a48a683e9361c8f7b3 (patch) | |
| tree | f5df16492fd5cfc3a2915c678306b53c212edb5e /Box.py | |
| parent | ef6abc27cec35e32acef66c5077ffcc6bedde983 (diff) | |
| download | SnakePuzzle-d1c404fe8eac3c743004a9a48a683e9361c8f7b3.tar.gz SnakePuzzle-d1c404fe8eac3c743004a9a48a683e9361c8f7b3.zip | |
fix: added typing
Diffstat (limited to 'Box.py')
| -rw-r--r-- | Box.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,5 +3,5 @@ from Vec import Vec2 class Box: - def __init__(self, pos: Vec2): + def __init__(self, pos: Vec2) -> None: self.pos = pos |
