We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2639a commit 677274bCopy full SHA for 677274b
agents.py
@@ -314,7 +314,7 @@ def delete_thing(self, thing):
314
"""Remove a thing from the environment."""
315
try:
316
self.things.remove(thing)
317
- except(ValueError, e):
+ except ValueError as e:
318
print(e)
319
print(" in Environment delete_thing")
320
print(" Thing to be removed: {} at {}" .format(thing, thing.location))
0 commit comments