Skip to content

Commit 1f0ece4

Browse files
removed unnecessary imports
changed license text in README.rst
1 parent 06d5a83 commit 1f0ece4

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ optimization
4545
License
4646
=======
4747

48-
`MIT <https://github.com/pvstorageoptimization/Optibess_algorithm/LICENSE>`_
48+
Optibess Algorithm is licensed under the `MIT license <LICENSE>`_
4949

optibess_algorithm/financial_calculator.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
import numpy_financial as npf
44
import pandas as pd
55
import numpy as np
6-
import time
76
import matplotlib.pyplot as plt
87

98
from .output_calculator import OutputCalculator
109
from . import constants
11-
from .producers import PvProducer
12-
from .power_storage import LithiumPowerStorage
1310

1411

1512
class FinancialCalculator:

optibess_algorithm/output_calculator.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import datetime
2-
import time
32
from collections.abc import Iterable
43
from enum import Enum, auto
54

65
import numpy as np
76
import pandas as pd
87
from matplotlib import pyplot as plt
98

10-
from .producers import Producer, PvProducer
11-
from .power_storage import PowerStorage, LithiumPowerStorage
9+
from .producers import Producer
10+
from .power_storage import PowerStorage
1211
from .utils import year_diff, month_diff
1312

1413

optibess_algorithm/power_system_optimizer.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import logging
22
import os
3-
import time
43
from abc import ABC, abstractmethod
5-
import numpy as np
64
import nevergrad as ng
75

86
from .constants import MAX_BATTERY_HOURS

0 commit comments

Comments
 (0)