Skip to content

Commit 18b5716

Browse files
Lint + black
1 parent 8da66cd commit 18b5716

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

causal_testing/json_front/json_class.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import argparse
55
import json
66
import logging
7-
import tempfile
87

98
from abc import ABC
109
from dataclasses import dataclass
@@ -47,7 +46,7 @@ class JsonUtility(ABC):
4746
def __init__(self, log_path):
4847
self.paths = None
4948
self.variables = None
50-
self.data = list()
49+
self.data = []
5150
self.test_plan = None
5251
self.modelling_scenario = None
5352
self.causal_specification = None
@@ -256,7 +255,7 @@ def get_args(test_args=None) -> argparse.Namespace:
256255
"--data_path",
257256
help="Specify path to file containing runtime data",
258257
required=True,
259-
nargs='+',
258+
nargs="+",
260259
)
261260
parser.add_argument(
262261
"--dag_path",

0 commit comments

Comments
 (0)