From 502d37058c779cb18688000e26b718f3e0510771 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 11 Sep 2023 20:43:38 -0700 Subject: [PATCH] Remove dead code. --- game/ato/task.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 game/ato/task.py diff --git a/game/ato/task.py b/game/ato/task.py deleted file mode 100644 index e23c531e..00000000 --- a/game/ato/task.py +++ /dev/null @@ -1,14 +0,0 @@ -from dataclasses import dataclass - -from game.ato import FlightType - - -@dataclass(frozen=True) -class Task: - """The main task of a flight or package.""" - - #: The type of task. - task_type: FlightType - - #: The location of the objective. - location: str