Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 6dc1b8c

Browse files
committed
fix type annotation
1 parent efdc87b commit 6dc1b8c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/path.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from collections import defaultdict
24
from dataclasses import dataclass
35
from functools import cached_property
@@ -68,7 +70,7 @@ class Dir(PathNode):
6870
"""
6971

7072
full_path: str
71-
children: list[File | "Dir"]
73+
children: list[File | Dir]
7274

7375
@cached_property
7476
def totals(self) -> ReportTotals:

0 commit comments

Comments
 (0)