Skip to content

Commit

Permalink
release(neispy): bump up 5.0.0 to 5.0.1 (#66)
Browse files Browse the repository at this point in the history
* fix: spstimetable return Any

Signed-off-by: Ryu Juheon <saidbysolo@gmail.com>

* release(neispy): bump up 5.0.0 to 5.0.1

Signed-off-by: Ryu Juheon <saidbysolo@gmail.com>

---------

Signed-off-by: Ryu Juheon <saidbysolo@gmail.com>
  • Loading branch information
SaidBySolo authored Aug 26, 2023
1 parent aa5b793 commit 5f8e5a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neispy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from neispy.client import Neispy as Neispy

__version__ = "5.0.0"
__version__ = "5.0.1"
2 changes: 1 addition & 1 deletion neispy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def hisTimetable(self, **kwargs: Unpack[TimetableParams]) -> HisTimeTable:
)
return HisTimeTable.from_dict(r)

async def spsTimetable(self, **kwargs: Unpack[TimetableParams]) -> Any:
async def spsTimetable(self, **kwargs: Unpack[TimetableParams]) -> SpsTimeTable:
r = await (
self.get_spsTimetablebgs(kwargs)
if is_legacy_timetable(kwargs)
Expand Down

0 comments on commit 5f8e5a5

Please sign in to comment.