Skip to content

Commit

Permalink
Fix __future__ imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Jul 11, 2024
1 parent f694d4a commit 802e773
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/sdr/_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
A module containing various helper functions for the library.
"""

from __future__ import annotations

import builtins
import inspect
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/sdr/_nco.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
A module for numerically controlled oscillators (NCO).
"""

# from __future__ import annotations
from __future__ import annotations

from typing import Any, overload

Expand Down

0 comments on commit 802e773

Please sign in to comment.