From 64b4e41df0d9d5b5c7fc835a63fa029dfced0ced Mon Sep 17 00:00:00 2001 From: Haku Date: Tue, 25 May 2021 09:55:00 -0400 Subject: [PATCH] removed debug print statements --- founderlessnotify/founderlessnotify.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/founderlessnotify/founderlessnotify.py b/founderlessnotify/founderlessnotify.py index 0e7f888..18290ce 100644 --- a/founderlessnotify/founderlessnotify.py +++ b/founderlessnotify/founderlessnotify.py @@ -102,7 +102,6 @@ class FounderlessNotify(commands.Cog): if region in previous_founderless_regions: continue now_founderless.append(region) - print(now_founderless) # Get the region endos for both lists now_founderless_endos = get_region_endos(now_founderless) # Create an ordered set with each region's name and delegate endorsement level @@ -113,7 +112,6 @@ class FounderlessNotify(commands.Cog): except KeyError: region_endos = -1 out.append((region_endos, region)) - print(now_founderless_endos["the_north_pacific"]) # Sort the output by delegate endos in descending order out.sort() out.reverse()