Skip to content

Commit

Permalink
fix: pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Oct 17, 2024
1 parent 3d96036 commit 934f8cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ format:
black .

check-lint:
pyright supertokens_python tests examples && pylint supertokens_python tests examples
pyright supertokens_python tests examples && pylint --disable=too-many-positional-arguments --load-plugins=pylint.extensions.no_self_use supertokens_python tests examples

set-up-hooks:
cp hooks/pre-commit.sh .git/hooks/pre-commit
Expand All @@ -20,7 +20,7 @@ test:
pytest -vv --reruns 3 --reruns-delay 5 ./tests/

dev-install:
pip install -r dev-requirements.txt
python -m pip install -r dev-requirements.txt

freeze-dev-requirements:
pip freeze > dev-requirements.txt
Expand Down
3 changes: 1 addition & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
aiosmtplib>=1.1.6,<4.0.0
anyio==3.5.0
asgiref==3.5.2
astroid==2.9.3
attrs==21.4.0
black==22.3.0
certifi==2021.10.8
Expand Down Expand Up @@ -51,7 +50,7 @@ pycparser==2.21
pycryptodome==3.10.4
pydantic==1.9.0
PyJWT==2.6.0
pylint==2.12.2
pylint==3.3.1
pyparsing==3.0.7
pyright==1.1.236
pyrsistent==0.18.1
Expand Down
1 change: 1 addition & 0 deletions tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def setup_multitenancy_feature(host: str = "localhost", port: str = "3567"):
json={
"licenseKey": OPAQUE_KEY_WITH_MULTITENANCY_FEATURE,
},
timeout=10,
)


Expand Down

0 comments on commit 934f8cd

Please sign in to comment.