vais/simulator.py
Line 107
The method does not make use of the class instance it gets passed. Hence, it should be declared as a static method using the @staticmethod decorator.
print(agent.name, 'fights')
def _move_agent(self, agent, direction, wrap_allowed=True):
vais/simulator.py
Line 107
The method does not make use of the class instance it gets passed. Hence, it should be declared as a static method using the
@staticmethoddecorator.print(agent.name, 'fights')