Skip to content

Commit

Permalink
oops - fix setup.py + yapf
Browse files Browse the repository at this point in the history
  • Loading branch information
nkumar-bdai committed Apr 29, 2024
1 parent 3554fe8 commit a648307
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"opencv-python == 4.7.0.72",
"pg3@git+https://github.com/tomsilver/pg3.git",
"gym_sokoban@git+https://github.com/Learning-and-Intelligent-Systems/gym-sokoban.git", # pylint: disable=line-too-long
"pbrspot@git+https://github.com/NishanthJKumar/pbrspot.git"
"pbrspot@git+https://github.com/NishanthJKumar/pbrspot.git",
"ImageHash",
"google-generativeai"
],
Expand Down
22 changes: 7 additions & 15 deletions tests/approaches/test_oracle_approach.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,29 +47,21 @@
_PDDL_ENV_MODULE_PATH = predicators.envs.pddl_env.__name__

ENV_NAME_AND_CLS = [
("cover", CoverEnv),
("cover_typed_options", CoverEnvTypedOptions),
("cover", CoverEnv), ("cover_typed_options", CoverEnvTypedOptions),
("cover_place_hard", CoverEnvPlaceHard),
("cover_hierarchical_types", CoverEnvHierarchicalTypes),
("cover_regrasp", CoverEnvRegrasp),
("bumpy_cover", BumpyCoverEnv),
("cover_regrasp", CoverEnvRegrasp), ("bumpy_cover", BumpyCoverEnv),
("cover_multistep_options", CoverMultistepOptions),
("regional_bumpy_cover", RegionalBumpyCoverEnv),
("cluttered_table", ClutteredTableEnv),
("cluttered_table_place", ClutteredTablePlaceEnv),
("blocks", BlocksEnv),
("exit_garage", ExitGarageEnv),
("narrow_passage", NarrowPassageEnv),
("painting", PaintingEnv),
("sandwich", SandwichEnv),
("tools", ToolsEnv),
("playroom", PlayroomEnv),
("repeated_nextto", RepeatedNextToEnv),
("cluttered_table_place", ClutteredTablePlaceEnv), ("blocks", BlocksEnv),
("exit_garage", ExitGarageEnv), ("narrow_passage", NarrowPassageEnv),
("painting", PaintingEnv), ("sandwich", SandwichEnv), ("tools", ToolsEnv),
("playroom", PlayroomEnv), ("repeated_nextto", RepeatedNextToEnv),
("repeated_nextto_single_option", RepeatedNextToSingleOptionEnv),
("repeated_nextto_ambiguous", RepeatedNextToAmbiguousEnv),
("repeated_nextto_simple", RepeatedNextToSimple),
("satellites", SatellitesEnv),
("satellites_simple", SatellitesSimpleEnv),
("satellites", SatellitesEnv), ("satellites_simple", SatellitesSimpleEnv),
("screws", ScrewsEnv),
("repeated_nextto_painting", RepeatedNextToPaintingEnv),
("pddl_blocks_fixed_tasks", FixedTasksBlocksPDDLEnv),
Expand Down

0 comments on commit a648307

Please sign in to comment.