Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lrzpellegrini committed Feb 7, 2024
1 parent 5fbb066 commit 1d8d281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avalanche/benchmarks/datasets/external_datasets/mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ def __getitem__(self, index: int):
target = self.target_transform(target)

return img, target

# Override property raw_folder
@property
def raw_folder(self) -> str:
return os.path.join(self.root, "MNIST", "raw")

@property
def processed_folder(self) -> str:
return os.path.join(self.root, "MNIST", "processed")
Expand Down

0 comments on commit 1d8d281

Please sign in to comment.