From c271656f51e05728b4366b14a2bc2e76e3a44bdb Mon Sep 17 00:00:00 2001 From: Valentijn Date: Wed, 18 Mar 2026 19:52:27 +0100 Subject: [PATCH] removed some copilot added comments --- PMT.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/PMT.py b/PMT.py index 4f748ad..062d721 100644 --- a/PMT.py +++ b/PMT.py @@ -15,7 +15,6 @@ class PMT: self.base_url = os.environ.get("URL_PMT") def get_week_range(self, week_offset): - """Get Monday date for week_offset weeks from now""" today = datetime.now() days_to_monday = 0 if today.weekday() == 0 else 7 - today.weekday() monday = today + timedelta(days=days_to_monday) @@ -57,7 +56,6 @@ class PMT: return self.session, self.context_token, self.user_token def get_shifts(self, days_ahead=14): - """Fetch shifts from now to days_ahead using the REAL endpoint""" if not self.session or not self.context_token or not self.user_token: raise ValueError("Must call login() first!") @@ -104,7 +102,6 @@ class PMT: @classmethod def print_shifts(cls, shifts): - """Pretty print shifts (class method since it doesn't need instance)""" if not shifts: print("No upcoming shifts found.") return