Skip to content

Commit 0b31620

Browse files
committed
Update: black
1 parent 1402a74 commit 0b31620

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

kaleidoscope/algorithms/codec.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class Decode(BlockAlgorithm):
1818
"""
1919
The algorithm to decode data according to CF conventions.
2020
"""
21+
2122
def __init__(self, dtype: np.dtype, m: int):
2223
"""
2324
Creates a new algorithm instance.

kaleidoscope/operators/randomizeop.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ def run(self, source: Dataset) -> Dataset: # noqa: D102
8080
"""
8181
source_id = source.attrs.get(
8282
"tracking_id",
83-
source.attrs.get("uuid", f"{uuid.uuid3(uuid.NAMESPACE_URL, self._args.source_file.stem)}"),
83+
source.attrs.get(
84+
"uuid",
85+
f"{uuid.uuid3(uuid.NAMESPACE_URL, self._args.source_file.stem)}",
86+
),
8487
)
8588
target: Dataset = Dataset(
8689
data_vars=source.data_vars,

0 commit comments

Comments
 (0)