Skip to content

Commit

Permalink
✏️ Address lint
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Jan 10, 2025
1 parent 9109294 commit 12583f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/iemweb/autoplot/scripts/p64.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def get_data(ctx):
color = "b"
else:
color = "r"
dt = date(year, 1, 1) + timedelta(days=(int(idx) + 183 - 1))
dt = date(year, 1, 1) + timedelta(days=int(idx) + 183 - 1)
rows.append(
dict(
year=year,
Expand Down
3 changes: 3 additions & 0 deletions pylib/iemweb/autoplot/scripts/p90.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,9 @@ def plotter(ctx: dict):
t = ctx["t"]
ilabel = ctx["ilabel"] == "yes"
geo = ctx["geo"]
grid = None
aff = None
crs = None
if geo == "ugc":
do_ugc(ctx)
elif geo == "polygon":
Expand Down

0 comments on commit 12583f1

Please sign in to comment.