Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pre-commit #835

Merged
merged 34 commits into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e2859e7
fix wrapper unwrapped thing
jjshoots Oct 3, 2022
4ead31a
no bare excepts
jjshoots Oct 3, 2022
33f7c1e
Merge branch 'Farama-Foundation:master' into master
jjshoots Oct 4, 2022
4c06d31
add first basic tutorial
jjshoots Oct 5, 2022
185e54a
fix to pistonball cause easier to learnfix to pistonball cause easier to
jjshoots Oct 5, 2022
387fc1f
update top readme
jjshoots Oct 5, 2022
18f53d3
black isort
jjshoots Oct 5, 2022
4ca2b00
move parameters up
jjshoots Oct 5, 2022
0f110f6
fix typo, remove numpy dependency
jjshoots Oct 5, 2022
cef513a
reorder dependencies
jjshoots Oct 5, 2022
725dd99
increase training episodes
jjshoots Oct 6, 2022
f5808c2
Merge branch 'Farama-Foundation:master' into master
jjshoots Oct 6, 2022
fd71a97
long awaited pre-commit fix
jjshoots Oct 6, 2022
c221a02
Merge branch 'Farama-Foundation:master' into master
jjshoots Oct 14, 2022
94ab14a
update image link and setup
jjshoots Oct 14, 2022
a79fb49
remove cleanrl from main tutorials section
jjshoots Oct 14, 2022
c4bff4a
add CoC
jjshoots Oct 14, 2022
f56a527
Merge branch 'Farama-Foundation:master' into master
jjshoots Oct 22, 2022
c26a278
long awaited graph space
jjshoots Oct 22, 2022
717e4fc
reenable tests
jjshoots Oct 22, 2022
0e7c52a
remove rogue prints
jjshoots Oct 22, 2022
111d509
black
jjshoots Oct 23, 2022
28fdb16
Merge branch 'Farama-Foundation:master' into master
jjshoots Jan 3, 2023
74e170c
Merge branch 'Farama-Foundation:master' into master
jjshoots Jan 4, 2023
af65458
change graph to sequence
jjshoots Feb 13, 2023
5e8ca89
Merge branch 'Farama-Foundation:master' into master
jjshoots Feb 13, 2023
b296fa7
Merge branch 'Farama-Foundation:master' into master
jjshoots Feb 22, 2023
af5c1b4
Merge branch 'Farama-Foundation:master' into master
jjshoots Feb 23, 2023
15fe5e6
add farama notifications
jjshoots Feb 27, 2023
53dcbba
fix graph space bug
jjshoots Feb 27, 2023
89fca91
precommit
jjshoots Feb 28, 2023
d2e48e8
precommit
jjshoots Feb 28, 2023
ffd393b
Merge branch 'Farama-Foundation:master' into master
jjshoots Mar 8, 2023
10c2c7d
fix precommit
jjshoots Mar 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pettingzoo/mpe/_mpe_utils/simple_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ def render(self):
elif self.render_mode == "human":
pygame.display.flip()
return


def draw(self):
# clear screen
Expand Down
2 changes: 1 addition & 1 deletion pettingzoo/utils/conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class my_par_class(pettingzoo.utils.env.ParallelEnv):

def aec_fn(**kwargs):
par_env = par_env_fn(**kwargs)
aec_env = pettingzoo.utils.parallel_to_aec(par_env)
aec_env = parallel_to_aec(par_env)
return aec_env

return aec_fn
Expand Down