Skip to content

Commit 35e37c8

Browse files
committed
#100 Update data for tests
1 parent 47f8499 commit 35e37c8

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tests/data.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
__all__ = [
2-
"Weather",
3-
"weather",
4-
"df_weather_true",
5-
"ser_weather_true",
6-
]
1+
__all__ = ["Weather", "weather", "df_weather_true", "ser_weather_true"]
72

83

94
# standard library
105
from dataclasses import dataclass, field
6+
from typing import Any
117

128

139
# dependencies
@@ -109,7 +105,7 @@ class Weather:
109105
}
110106

111107

112-
ser_weather_true = pd.Series(
108+
ser_weather_true: "pd.Series[Any]" = pd.Series(
113109
data=[7.1, 24.3, 5.4, 25.9, 4.9],
114110
index=pd.MultiIndex.from_arrays(
115111
[

0 commit comments

Comments
 (0)