From 16d1e5e2940adfb51b06e92a10ddf3d98ca89e49 Mon Sep 17 00:00:00 2001 From: kaylakraines <20597974+kaylakraines@users.noreply.github.com> Date: Tue, 17 Oct 2023 11:27:14 -0400 Subject: [PATCH] Remove blank lines --- app/requirements/check_registered.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/requirements/check_registered.py b/app/requirements/check_registered.py index 930ad4b..8b5cb39 100644 --- a/app/requirements/check_registered.py +++ b/app/requirements/check_registered.py @@ -6,7 +6,6 @@ class Requirement(BaseRequirement): async def enforce(self, link, operation): """ Given a link and the current operation, ensure will only run if the agent with the given ID/PAW is alive. - :param link :param operation :return: True if it complies, False if it doesn't @@ -16,4 +15,3 @@ async def enforce(self, link, operation): if uf.value in agent_paws: return True return False -