From 2ef2eafdd3d90b330825e206b4638c50c1b29b2c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 1 Jul 2021 19:37:08 -0700 Subject: [PATCH] Remove debug cruft. We don't need to print the description of every unit on startup. --- game/dcs/groundunittype.py | 1 - 1 file changed, 1 deletion(-) diff --git a/game/dcs/groundunittype.py b/game/dcs/groundunittype.py index c2b6f2ab..908e0e18 100644 --- a/game/dcs/groundunittype.py +++ b/game/dcs/groundunittype.py @@ -57,7 +57,6 @@ class GroundUnitType(UnitType[VehicleType]): def _load_all(cls) -> None: for unit_type in cls._each_unit_type(): for data in cls._each_variant_of(unit_type): - print(data.name, data.description) cls.register(data) cls._loaded = True