Skip to content

Commit

Permalink
Enforce import order
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum5 committed Sep 27, 2020
1 parent 0ecc367 commit e201ee4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[flake8]
max-line-length = 120
application-import-names = win2xcur
import-order-style = pycharm
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 mypy wheel
pip install flake8 flake8-import-order mypy wheel
pip install -r requirements.txt
sudo apt-get install x11-apps
- name: Lint with flake8
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from setuptools import setup, find_packages
from setuptools import find_packages, setup

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
Expand Down

0 comments on commit e201ee4

Please sign in to comment.