Skip to content

Commit

Permalink
Fix Quest3DatasetPaths initialization
Browse files Browse the repository at this point in the history
Summary: Fixed the refactoring proposed in D58632000 and fix issue raised in #4

Reviewed By: fanzhangmeta

Differential Revision: D58962104

fbshipit-source-id: e61a9f39845c033b19ea5576d117f715abc26ff8
  • Loading branch information
SeaOtocinclus authored and facebook-github-bot committed Jun 24, 2024
1 parent 8b4f512 commit 72a751e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hot3d/data_loaders/PathProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def fromRecordingFolder(recording_instance_folderpath) -> SequenceDatasetPathsBa

class Quest3DatasetPaths(SequenceDatasetPathsBase):
def __init__(self, recording_instance_folderpath):
super().__init__(self, recording_instance_folderpath)
super().__init__(recording_instance_folderpath)

@property
def camera_models_filepath(self):
Expand Down

0 comments on commit 72a751e

Please sign in to comment.