Skip to content

Commit

Permalink
from future import annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
finsberg committed Sep 5, 2024
1 parent 878b0a8 commit a803656
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/circulation/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import annotations
from typing import Callable, Any
from abc import ABC, abstractmethod
import json
Expand Down
3 changes: 2 additions & 1 deletion src/circulation/regazzoni2020.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import Callable, Any
from __future__ import annotations

from typing import Callable, Any

from . import base
from . import units
Expand Down
4 changes: 1 addition & 3 deletions src/circulation/zenkur.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from __future__ import annotations
import numpy as np
# from scipy.integrate import RK45, solve_ivp


from . import base
from . import units

Expand Down

0 comments on commit a803656

Please sign in to comment.