Skip to content

Commit a7843de

Browse files
committed
Apply ruff auto-fixes to all modified files
1 parent c639c2a commit a7843de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

geometry/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

22
"""Geometry module containing various geometric shapes and algorithms."""
3-
from geometry.geometry import Circle, Rectangle
43
from geometry.collision_detection import (
5-
detect_circle_collision,
64
detect_aabb_collision,
5+
detect_circle_collision,
76
detect_circle_rectangle_collision,
87
)
8+
from geometry.geometry import Circle, Rectangle
99

1010
__all__ = [
1111
'Circle',
1212
'Rectangle',
13-
'detect_circle_collision',
1413
'detect_aabb_collision',
14+
'detect_circle_collision',
1515
'detect_circle_rectangle_collision',
1616
]

0 commit comments

Comments
 (0)