Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 8, 2022
1 parent 92ee14c commit 1a4d278
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/data/messages/w/wrong-import-order/bad.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import os
from . import utils
import pylint # [wrong-import-order]
import sys # [wrong-import-order]

import pylint # [wrong-import-order]

from . import utils
2 changes: 2 additions & 0 deletions doc/data/messages/w/wrong-import-order/good.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import os
import sys

import pylint

from . import utils

0 comments on commit 1a4d278

Please sign in to comment.