Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed May 31, 2022
1 parent 97e1258 commit a4c3436
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gweatherrouting/core/grib.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def getWind (self, tt, bounds):
t1 = int (int (round (t)) / 3) * 3
t2 = int (int (round (t+6)) / 3) * 3

if t2 == t1:
if t2 == t1:
t1 -= 3

lon1 = min (bounds[0][1], bounds[1][1])
Expand Down
2 changes: 1 addition & 1 deletion gweatherrouting/gtk/widgets/mpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, parent):
self.connect("draw", self.draw)

def plotDrawer(self, w, h, plt, s):
pass
return None

def draw(self, area, ctx):
a = self.get_allocation()
Expand Down

0 comments on commit a4c3436

Please sign in to comment.