Skip to content

Commit fa230d2

Browse files
fix: fix lint problem
1 parent d155d20 commit fa230d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graphgen/engine.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _init_storage(self):
6969
proxy = init_storage(self.global_params["kv_backend"], working_dir, node_id)
7070
self.storage_actors[f"kv_{node_id}"] = proxy
7171
logger.info("Create KV Storage Actor: namespace=%s", node_id)
72-
72+
7373
for ns in graph_namespaces:
7474
proxy = init_storage(self.global_params["graph_backend"], working_dir, ns)
7575
self.storage_actors[f"graph_{ns}"] = proxy
@@ -87,11 +87,11 @@ def _scan_storage_requirements(self) -> tuple[set[str], set[str]]:
8787
if self._function_needs_param(op_name, "graph_backend"):
8888
graph_namespaces.add("graph")
8989
return kv_namespaces, graph_namespaces
90-
90+
9191
def _function_needs_param(self, op_name: str, param_name: str) -> bool:
9292
if op_name not in self.functions:
9393
return False
94-
94+
9595
func = self.functions[op_name]
9696

9797
if inspect.isclass(func):

0 commit comments

Comments
 (0)