Skip to content

Commit 1e64c76

Browse files
authored
🎨 Format Python code with psf/black
1 parent 483c5ee commit 1e64c76

5 files changed

Lines changed: 0 additions & 5 deletions

File tree

src/datamodules/components/black_sea/dataset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def __init__(
5454
f32=True,
5555
download=True,
5656
):
57-
5857
# manager = BlackSeaManager(data_path, files, download=download)
5958
# if files is None: # provide a list of files to load
6059
# files = manager.get_filepaths()

src/eval.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
@hydra.main(version_base="1.2", config_path=root / "configs", config_name="eval.yaml")
99
def main(cfg: DictConfig) -> None:
10-
1110
from src.tasks.eval_task import evaluate
1211

1312
evaluate(cfg)

src/models/components/mlp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def __init__(
2020
output_norm: str = "none",
2121
bias: bool = True,
2222
):
23-
2423
super().__init__()
2524
assert input_norm in ["batch", "layer", "none"]
2625
assert output_norm in ["batch", "layer", "none"]

src/train.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
@hydra.main(version_base="1.2", config_path=root / "configs", config_name="train.yaml")
2626
def main(cfg: DictConfig) -> float:
27-
2827
# We want to add fields to config so need to call OmegaConf.set_struct
2928
OmegaConf.set_struct(cfg, False)
3029

src/utils/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def task_wrapper(task_func: Callable) -> Callable:
3030
"""
3131

3232
def wrap(cfg: DictConfig):
33-
3433
# apply extra utilities
3534
extras(cfg)
3635

0 commit comments

Comments
 (0)