Skip to content

Commit

Permalink
Merge pull request CZ-NIC#753 from OpenIDC/fix-isort
Browse files Browse the repository at this point in the history
Fix isort
  • Loading branch information
tpazderka authored Jul 8, 2020
2 parents 6e50c3c + f436d6a commit 53a246a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ test:
.PHONY: test

isort:
@pipenv run isort --recursive $(OICDIR) $(TESTDIR)
@pipenv run isort $(OICDIR) $(TESTDIR)

check-isort:
@pipenv run isort --recursive --diff --check-only $(OICDIR) $(TESTDIR)
@pipenv run isort --diff --check-only $(OICDIR) $(TESTDIR)
.PHONY: isort check-isort

blacken:
Expand Down
2 changes: 1 addition & 1 deletion src/oic/oauth2/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import copy
import http.cookiejar as cookielib
import logging
import warnings
from http import cookiejar as cookielib
from http.cookies import CookieError
from http.cookies import SimpleCookie

Expand Down

0 comments on commit 53a246a

Please sign in to comment.