Skip to content

Commit

Permalink
Ignore pyright error
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
  • Loading branch information
aaronchongth committed Jan 4, 2024
1 parent b972da8 commit 7622cff
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,8 @@ def to_job(self) -> Job:
print(f"setting at {self.at}")
# job = job.at(self.at)
# TODO(ac): not hardcode this timezone
job = job.at(
self.at, timezone("Asia/Singapore")
) # pyright: ignore[reportGeneralTypeIssues]
tz = timezone("Asia/Singapore") # pyright: ignore[reportGeneralTypeIssues]
job = job.at(self.at, tz)

return job

Expand Down

0 comments on commit 7622cff

Please sign in to comment.