From 1c2c1f286fa8eedb7069b7e35812192059e90300 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 21 Oct 2021 21:06:38 +0200 Subject: [PATCH] Some cleanup --- test/{ => general}/TestUniqueness.py | 0 worlds/factorio/Options.py | 1 - 2 files changed, 1 deletion(-) rename test/{ => general}/TestUniqueness.py (100%) diff --git a/test/TestUniqueness.py b/test/general/TestUniqueness.py similarity index 100% rename from test/TestUniqueness.py rename to test/general/TestUniqueness.py diff --git a/worlds/factorio/Options.py b/worlds/factorio/Options.py index 237d4e61..495669ae 100644 --- a/worlds/factorio/Options.py +++ b/worlds/factorio/Options.py @@ -125,7 +125,6 @@ class FactorioStartItems(OptionDict): default = {"burner-mining-drill": 19, "stone-furnace": 19} def __init__(self, value: typing.Dict[str, typing.Any]): - print(value) if any(item_count < 1 for item_count in value.values()): raise Exception("Cannot have non-positive item counts.") super().__init__(value)