We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b9317 commit f2bfcf7Copy full SHA for f2bfcf7
test/kaleidoscope/test_writer.py
@@ -23,6 +23,7 @@
23
24
warnings.filterwarnings("ignore")
25
26
+
27
class WriterTest(unittest.TestCase):
28
"""Tests the target product writer."""
29
@@ -61,7 +62,9 @@ def generate_source_files(self):
61
62
def test_write(self):
63
"""Tests writing a generated target dataset."""
64
for source_file in self.source_files:
- target_file = Path(f"{source_file}".replace(".nc", ".randomized.nc"))
65
+ target_file = Path(
66
+ f"{source_file}".replace(".nc", ".randomized.nc")
67
+ )
68
reader = Reader(self.reader_config)
69
source = reader.read(source_file)
70
0 commit comments