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 8da66cd commit 18b5716Copy full SHA for 18b5716
causal_testing/json_front/json_class.py
@@ -4,7 +4,6 @@
4
import argparse
5
import json
6
import logging
7
-import tempfile
8
9
from abc import ABC
10
from dataclasses import dataclass
@@ -47,7 +46,7 @@ class JsonUtility(ABC):
47
46
def __init__(self, log_path):
48
self.paths = None
49
self.variables = None
50
- self.data = list()
+ self.data = []
51
self.test_plan = None
52
self.modelling_scenario = None
53
self.causal_specification = None
@@ -256,7 +255,7 @@ def get_args(test_args=None) -> argparse.Namespace:
256
255
"--data_path",
257
help="Specify path to file containing runtime data",
258
required=True,
259
- nargs='+',
+ nargs="+",
260
)
261
parser.add_argument(
262
"--dag_path",
0 commit comments