From 0fb5a3476aa0001072ff17207fa3b5608e8989ee Mon Sep 17 00:00:00 2001 From: A_D Date: Tue, 5 Jan 2021 18:34:17 +0200 Subject: [PATCH] Removed prototyping code --- killswitch.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/killswitch.py b/killswitch.py index 783b6ccc..84dfd048 100644 --- a/killswitch.py +++ b/killswitch.py @@ -193,10 +193,3 @@ def get_reason(id: str, *, version: semantic_version.Version = _current_version) def kills_for_version(version: semantic_version.Version = _current_version) -> List[KillSwitch]: """Query the global KillSwitchSet for kills matching a particular version.""" return active.kills_for_version(version) - - -if __name__ == "__main__": - setup_main_list() - print(f'{_current_version=}') - print(f"{get_disabled('test')=}") - print(f"{active=}")