Skip to content

Commit

Permalink
Run isort on all files in CI and fix issues (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler authored Jul 13, 2022
1 parent 088d1f9 commit 00603cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
- name: Run flake8
run: flake8
- name: Run isort
run: isort *.py --check-only
run: isort --check --diff .
4 changes: 2 additions & 2 deletions entities/symbol.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import List

from .common import (
Author, Category, Circle, Created, Deprecated, Description, Keywords, Length, Name, Polygon, Position, Rotation, Text,
Version
Author, Category, Circle, Created, Deprecated, Description, Keywords, Length, Name, Polygon, Position, Rotation,
Text, Version
)
from .helper import indent_entities

Expand Down

0 comments on commit 00603cb

Please sign in to comment.