Skip to content

Commit fd94939

Browse files
authored
Merge pull request #3 from JaerongA/main
fix: 🐛 import from __future__ to support backward compatibility
2 parents a28cf13 + 084ada2 commit fd94939

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

element_array_ephys/ephys_report.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import datetime
24
import pathlib
35
from uuid import UUID

element_array_ephys/plotting/unit_level.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from modulefinder import Module
24
from typing import Any
35

element_array_ephys/probe.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Neuropixels Probes
33
"""
4+
from __future__ import annotations
45
from typing import List
56

67
import datajoint as dj

0 commit comments

Comments
 (0)