Skip to content

Commit 3628279

Browse files
committed
Use one line per import
1 parent 9c5901a commit 3628279

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

windpowerlib/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
__license__ = "MIT"
33
__version__ = "0.2.1dev"
44

5-
from .wind_turbine import (
6-
WindTurbine,
7-
get_turbine_types,
8-
create_power_curve,
9-
) # noqa: F401
5+
from .wind_turbine import WindTurbine # noqa: F401
6+
from .wind_turbine import get_turbine_types # noqa: F401
7+
from .wind_turbine import create_power_curve # noqa: F401
108
from .wind_farm import WindFarm # noqa: F401
119
from .wind_turbine_cluster import WindTurbineCluster # noqa: F401
1210
from .modelchain import ModelChain # noqa: F401

0 commit comments

Comments
 (0)