Skip to content

Commit

Permalink
fixed version
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinksyTRD committed Apr 9, 2024
1 parent 466b88a commit 1fb062e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion feems/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "feems"
version = "0.10.5"
version = "0.10.6"
description = ""
authors = ["Kevin Koosup Yum <[email protected]>"]
readme = "readme.md"
Expand Down
4 changes: 2 additions & 2 deletions feems/tests/test_system.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import copy
import pprint
import random
from typing import List, Dict
from typing import List, Dict, Tuple
from unittest import TestCase

from feems.components_model.component_electric import (
Expand Down Expand Up @@ -366,7 +366,7 @@ def get_propulsion_drives(
@staticmethod
def get_components_numbers_electric_system(
system: ElectricPowerSystem,
) -> (int, int, int, int, int):
) -> Tuple[int, int, int, int, int]:
no_power_sources = system.no_power_sources
no_propulsion_drive = system.no_propulsion_units
no_other_load = system.no_other_load
Expand Down

0 comments on commit 1fb062e

Please sign in to comment.