Skip to content

Commit

Permalink
added none return type to entity.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lunathanael committed Mar 11, 2024
1 parent b9037ce commit 14585b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clash_royale/envs/game_engine/entities/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def start(self) -> None:

self.start_entity(mod)

def stop(self):
def stop(self) -> None:
"""
Method used to stop this entityCollection.
Expand Down Expand Up @@ -473,7 +473,7 @@ def _load_entity(self, entity: Entity) -> None:

entity.collection = self

def _unload_entity(self, entity: Entity):
def _unload_entity(self, entity: Entity) -> None:
"""
Low-level method for unloading entities from the list.
Expand Down

0 comments on commit 14585b4

Please sign in to comment.