Skip to content

Commit 304525e

Browse files
committed
more docs fixes
1 parent 7388503 commit 304525e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/reference/gqlalchemy/transformations/importing/graph_importer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Parses a DOT file to a NetworkX graph and imports it to Memgraph. This method is
4949
def translate_dot_data(dot_data: str) -> None
5050
```
5151

52-
Parses DOT content to a NetworkX graph and imports it to Memgraph.
52+
Parses DOT content to a NetworkX graph and imports it to Memgraph. This method is available when `graph_type="NX".
5353
5454
**Arguments**:
5555

gqlalchemy/transformations/importing/graph_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def translate_dot_file(self, path: str) -> None:
102102
self.translate(graph)
103103

104104
def translate_dot_data(self, dot_data: str) -> None:
105-
"""Parses DOT content to a NetworkX graph and imports it to Memgraph.
105+
"""Parses DOT content to a NetworkX graph and imports it to Memgraph. This method is available when `graph_type="NX".
106106
107107
Args:
108108
- ``dot_data`` - Raw DOT graph content.

0 commit comments

Comments
 (0)