Skip to content

Commit

Permalink
changed to correct Tuple as return type
Browse files Browse the repository at this point in the history
  • Loading branch information
calbaker committed Apr 12, 2024
1 parent c3ca0a7 commit 3209e43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/altrios/demos/version_migration_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
# %%

import json
from typing import List
from typing import Tuple

import altrios as alt

def migrate_network() -> List[alt.Network, alt.Network]:
def migrate_network() -> Tuple[alt.Network, alt.Network]:
old_network_path = alt.resources_root() / "networks/Taconite_v0.1.6.yaml"
new_network_path = alt.resources_root() / "networks/Taconite.yaml"

Expand Down

0 comments on commit 3209e43

Please sign in to comment.