Skip to content

Commit

Permalink
Remove debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylakraines authored Oct 12, 2023
1 parent e28ec65 commit 5815663
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/requirements/check_registered.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,9 @@ async def enforce(self, link, operation):
:param operation
:return: True if it complies, False if it doesn't
"""
print("\n\n*********************\nin check_registered.py")
agent_paws = [agent.paw for agent in await operation.active_agents()]
for uf in link.used:
print("id: ", uf.value ," agent_paws:", agent_paws)
if uf.value in agent_paws:
print("returning true - run this ability")
return True
print("returning false - don't run this ability")
return False


0 comments on commit 5815663

Please sign in to comment.