Skip to content

Commit e5dde68

Browse files
fix: delete duplicate init
1 parent 0ed7f49 commit e5dde68

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

graphgen/models/storage/json_storage.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
@dataclass
99
class JsonKVStorage(BaseKVStorage):
10-
working_dir: str = None
11-
namespace: str = None
1210
_data: dict[str, str] = None
1311

1412
def __post_init__(self):

graphgen/models/storage/networkx_storage.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
@dataclass
1313
class NetworkXStorage(BaseGraphStorage):
14-
working_dir: str = None
15-
namespace: str = None
16-
1714
@staticmethod
1815
def load_nx_graph(file_name) -> Optional[nx.Graph]:
1916
if os.path.exists(file_name):

0 commit comments

Comments
 (0)