Skip to content

Commit

Permalink
Fix type-cast when self._hitl_config.episodes_filter==None (facebookr…
Browse files Browse the repository at this point in the history
  • Loading branch information
henrysamer authored Jan 30, 2024
1 parent e70791a commit 282753a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion habitat-hitl/habitat_hitl/_internal/hitl_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(
)
self._hitl_config = omegaconf_to_object(config.habitat_hitl)
self._dataset_config = config.habitat.dataset
self._play_episodes_filter_str = str(self._hitl_config.episodes_filter)
self._play_episodes_filter_str = self._hitl_config.episodes_filter
self._num_recorded_episodes = 0
if (
not self._hitl_config.experimental.headless
Expand Down

0 comments on commit 282753a

Please sign in to comment.