Skip to content

Commit 305e05b

Browse files
committed
Fix deptry errors
1 parent c0132af commit 305e05b

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ dependencies = [
2323
"pydantic>=2.12.3",
2424
"scipy>=1.17.0",
2525
"styxpodman",
26-
"requests>=2.33.1"
26+
"requests>=2.33.1",
27+
"platformdirs>=4.9.6"
2728
]
2829

2930
[dependency-groups]

src/neuromaps_prime/graph/builder.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
from __future__ import annotations
1212

13+
from pathlib import Path # noqa: TC003 (pydantic req'd)
1314
from typing import TYPE_CHECKING, Any, cast
1415

1516
import yaml
@@ -29,8 +30,6 @@
2930
from neuromaps_prime.resources import NEUROMAPSPRIME_GRAPH
3031

3132
if TYPE_CHECKING:
32-
from pathlib import Path
33-
3433
import networkx as nx
3534

3635

uv.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)