From 1fb062e09ee95be22eb6642e7210c22eefb1be9d Mon Sep 17 00:00:00 2001 From: keviny Date: Tue, 9 Apr 2024 14:59:13 +0200 Subject: [PATCH] fixed version --- feems/pyproject.toml | 2 +- feems/tests/test_system.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/feems/pyproject.toml b/feems/pyproject.toml index b20069e..af37cdd 100644 --- a/feems/pyproject.toml +++ b/feems/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "feems" -version = "0.10.5" +version = "0.10.6" description = "" authors = ["Kevin Koosup Yum "] readme = "readme.md" diff --git a/feems/tests/test_system.py b/feems/tests/test_system.py index f5ec93c..fd2a880 100644 --- a/feems/tests/test_system.py +++ b/feems/tests/test_system.py @@ -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 ( @@ -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