We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 488d5b3 commit 40136f0Copy full SHA for 40136f0
src/neuromaps_prime/graph/core.py
@@ -10,6 +10,7 @@
10
11
from __future__ import annotations
12
13
+import logging
14
import os
15
from pathlib import Path
16
from typing import Any, Literal
@@ -62,6 +63,7 @@ def __init__(
62
63
super().__init__()
64
65
self.runner = set_runner(runner=runner, **runner_kwargs)
66
+ self.logger = logging.getLogger(self.runner.logger_name)
67
self.data_dir = data_dir or os.getenv("NEUROMAPS_DATA", None)
68
self.yaml_path = (
69
yaml_file
0 commit comments