Skip to content

Commit 7103eef

Browse files
Ignore missing type stubs for entsoe package
The entsoe package started shipping a py.typed file since version >= 0.7.1 but it does not actually include any type information. The missing attribute for this package is ignored to avoid mypy errors when importing from entsoe. Signed-off-by: Daniel Zullo <daniel.zullo@frequenz.com>
1 parent df878c8 commit 7103eef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/frequenz/client/electricity_trading/cli/day_ahead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from datetime import datetime
77

88
import pandas as pd
9-
from entsoe import EntsoePandasClient
9+
from entsoe import EntsoePandasClient # type: ignore[attr-defined]
1010

1111

1212
def list_day_ahead_prices(

0 commit comments

Comments
 (0)