Skip to content

Commit 4d9ab28

Browse files
committed
fix: 🐛 import from __future__ module
this supports backward compability with typing
1 parent eababbc commit 4d9ab28

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

56
import datajoint as dj
67
import numpy as np

0 commit comments

Comments
 (0)