Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Update to New UI
Browse files Browse the repository at this point in the history
  • Loading branch information
olijeffers0n committed Nov 9, 2023
1 parent dc5c0b2 commit 59e4bf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schedule/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__name__ = "MySchedule.py"
__version__ = "1.0.6"
__version__ = "1.0.7"

from .api import ScheduleAPI
2 changes: 1 addition & 1 deletion schedule/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _get_all_data(self):
variables = {}

for line in html[start + 46 : end + len(html[:start])].split("\n"):
if line.strip() == "":
if line.strip() == "" or line.strip().startswith("//"):
continue
new_line = line.strip().replace("var ", "").replace(";", "")
variables[new_line.split("=")[0].strip()] = (
Expand Down

0 comments on commit 59e4bf4

Please # to comment.