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 3378157 commit 1e6b344Copy full SHA for 1e6b344
sphinxext/rediraffe.py
@@ -50,7 +50,7 @@ def create_graph(path: Path) -> Dict[str, str]:
50
graph_edges = {}
51
broken = False
52
with open(path, "r") as file:
53
- for line_num, line in enumerate(file):
+ for line_num, line in enumerate(file, start=1):
54
line = line.strip()
55
if len(line) == 0 or line.startswith("#"):
56
continue
0 commit comments