Skip to content

Commit

Permalink
Added from __future__ import annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
DuncDennis committed Oct 18, 2023
1 parent 15e9220 commit 519bee4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lorenzpy/simulations/autonomous_flows.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""Autonomous flows."""
from __future__ import annotations

from typing import Callable

import numpy as np
Expand Down
2 changes: 2 additions & 0 deletions src/lorenzpy/simulations/discrete_maps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""Discrete maps."""
from __future__ import annotations

import numpy as np

from .base import _BaseSimIterate
Expand Down
2 changes: 2 additions & 0 deletions src/lorenzpy/simulations/driven_systems.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""Driven Systems."""
from __future__ import annotations

import numpy as np

from .base import _BaseSimFlowDriven
Expand Down

0 comments on commit 519bee4

Please sign in to comment.