Fixed typo in log message when creating new graph file

This commit is contained in:
Aleks Vujić 2025-10-07 14:30:05 +02:00 committed by GitHub
parent 6190fa8985
commit dd8f44e621
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,7 +65,7 @@ class NetworkXStorage(BaseGraphStorage):
) )
else: else:
logger.info( logger.info(
f"[{self.workspace}] Created new empty graph fiel: {self._graphml_xml_file}" f"[{self.workspace}] Created new empty graph file: {self._graphml_xml_file}"
) )
self._graph = preloaded_graph or nx.Graph() self._graph = preloaded_graph or nx.Graph()