Skip to content

Commit

Permalink
Rename ambiguous variable
Browse files Browse the repository at this point in the history
  • Loading branch information
daBrado authored and simo5 committed Jul 24, 2020
1 parent 3e191d7 commit 3b7e832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jwcrypto/jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ def leeway(self):
return self._leeway

@leeway.setter
def leeway(self, l):
self._leeway = int(l)
def leeway(self, lwy):
self._leeway = int(lwy)

@property
def validity(self):
Expand Down

0 comments on commit 3b7e832

Please sign in to comment.