Skip to content

Commit

Permalink
flake8 goodness
Browse files Browse the repository at this point in the history
  • Loading branch information
benzkji committed Apr 20, 2023
1 parent 7a5454a commit 46864d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
Expand All @@ -27,9 +27,9 @@ jobs:
matrix:
python: ["3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install flake8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def resolve_for_class(self, cls):
else:
# first time, keep this file
done[file.sha1] = file.id
self.stdout.write("resolved {} duplicates in {}!".format(count, cls.__name__))
self.stdout.write(
"resolved {} duplicates in {}!".format(count, cls.__name__)
)


def model_get_all_related_objects(model):
Expand Down

0 comments on commit 46864d5

Please sign in to comment.