Skip to content

Commit

Permalink
chore: Minor black changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleabTessera committed Apr 1, 2022
1 parent c3f08a6 commit a76921a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mava/wrappers/open_spiel.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def env_done(self) -> bool:
"""
return not self.agents

def agent_iter(self, max_iter: int = 2 ** 63) -> Iterator:
def agent_iter(self, max_iter: int = 2**63) -> Iterator:
"""Agent iterator to loop through agents.
Args:
Expand Down
2 changes: 1 addition & 1 deletion mava/wrappers/pettingzoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def env_done(self) -> bool:
"""
return not self.agents

def agent_iter(self, max_iter: int = 2 ** 63) -> Iterator:
def agent_iter(self, max_iter: int = 2**63) -> Iterator:
"""Agent iterator to loop through agents.
Args:
Expand Down

0 comments on commit a76921a

Please sign in to comment.