Skip to content

Commit 1f78f8a

Browse files
committed
remove unused var
1 parent 379b78d commit 1f78f8a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

battle_map_tv/aoe.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,14 @@ class AreaOfEffectManager:
2828
def __init__(self, window: "ImageWindow", grid: Grid):
2929
self.window = window
3030
self.scene = window.scene()
31+
self.grid = grid
3132
self._store: List[BaseShape] = []
3233
self.rasterize = False
33-
self.snap_to_grid = False
3434
self.waiting_for: Optional[str] = None
3535
self.color = "white"
3636
self.start_point: Optional[Tuple[int, int]] = None
3737
self.temp_obj: Optional[BaseShape] = None
3838
self.callback: Optional[Callable] = None
39-
self.grid = grid
4039
self._previous_size: Optional[float] = None
4140

4241
def wait_for(self, shape: str, callback: Callable):

0 commit comments

Comments
 (0)