Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Fix lint on 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
davedoesdev committed Oct 28, 2021
1 parent 636b8c5 commit 6e10aa8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
make node_deps
- name: Lint
if: matrix.python-version == '3.10'
run: make lint

- name: Coverage
Expand Down
2 changes: 1 addition & 1 deletion test/jwt_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _setup(alg, priv_type, pub_type, exp, iat_skew, nbf, jti_size, keyless, expe
pubk = None if keyless else pub_keys[alg][pub_type]
jtis = {}
tick = timedelta(milliseconds=15000 if pub_type == 'jose' and exp < iat_skew else 1500)
@Vows.batch
@Vows.batch #pylint: disable=unused-variable
class GenerateJWT(Vows.Context): #pylint: disable=unused-variable
""" generate token """
def topic(self):
Expand Down

0 comments on commit 6e10aa8

Please sign in to comment.