Skip to content

Commit

Permalink
Fixed linting - line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed May 7, 2023
1 parent 0e52c6f commit 094b5ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def test_init_dataset(test_app: Tuple[Mock, DataManager, Path]):
directory=root_dir
)

dataset_dir = root_dir.joinpath(f'{date.year:04d}.{date.month:02d}.{date.day:02d}.{project}.{location}')
dataset_dir = root_dir.joinpath(f'{date.year:04d}.{date.month:02d}.{date.day:02d}.{project}.'
f'{location}')
assert dataset_dir.is_dir()
assert dataset_dir.joinpath('manifest.json').is_file()
current_files = sorted([file.relative_to(dataset_dir) for file in dataset_dir.rglob('*')])
Expand Down

0 comments on commit 094b5ef

Please sign in to comment.