From 3b7e8322d37a6b07f862d46e6a43b139cbcc89c5 Mon Sep 17 00:00:00 2001 From: Braden Pellett Date: Thu, 23 Jul 2020 23:41:40 -0700 Subject: [PATCH] Rename ambiguous variable --- jwcrypto/jwt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jwcrypto/jwt.py b/jwcrypto/jwt.py index 22fdda6..54b2606 100644 --- a/jwcrypto/jwt.py +++ b/jwcrypto/jwt.py @@ -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):