Skip to content

Commit f2bfcf7

Browse files
committed
Update: formatting
1 parent 33b9317 commit f2bfcf7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/kaleidoscope/test_writer.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
warnings.filterwarnings("ignore")
2525

26+
2627
class WriterTest(unittest.TestCase):
2728
"""Tests the target product writer."""
2829

@@ -61,7 +62,9 @@ def generate_source_files(self):
6162
def test_write(self):
6263
"""Tests writing a generated target dataset."""
6364
for source_file in self.source_files:
64-
target_file = Path(f"{source_file}".replace(".nc", ".randomized.nc"))
65+
target_file = Path(
66+
f"{source_file}".replace(".nc", ".randomized.nc")
67+
)
6568
reader = Reader(self.reader_config)
6669
source = reader.read(source_file)
6770

0 commit comments

Comments
 (0)