Skip to content

Commit

Permalink
Fix typos in __init__.py (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebllg committed Feb 21, 2021
1 parent 1572567 commit 36c0203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schedule/__init__.py
Expand Up @@ -411,7 +411,7 @@ def sunday(self):

def tag(self, *tags: Hashable):
"""
Tags the job with one or more unique indentifiers.
Tags the job with one or more unique identifiers.
Tags must be hashable. Duplicate tags are discarded.
Expand Down Expand Up @@ -466,7 +466,7 @@ def at(self, time_str):
)
time_values = time_str.split(":")
hour: Union[str, int]
mintue: Union[str, int]
minute: Union[str, int]
second: Union[str, int]
if len(time_values) == 3:
hour, minute, second = time_values
Expand Down

0 comments on commit 36c0203

Please sign in to comment.