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 29, 2024
1 parent f441ef0 commit 01fe344
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
7 changes: 1 addition & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ url = https://github.com/pycqa/flake8-polyfill
author = Ian Stapleton Cordasco
author_email = graffatcolmingov@gmail.com
license = MIT
license_file = LICENSE
license_files = LICENSE
classifiers =
Environment :: Console
Framework :: Flake8
Expand All @@ -17,11 +17,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Installation and packaging."""

import setuptools

setuptools.setup()
1 change: 1 addition & 0 deletions src/flake8_polyfill/options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Option handling polyfill for Flake8 2.x and 3.x."""

import optparse
import os

Expand Down
1 change: 1 addition & 0 deletions src/flake8_polyfill/stdin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Monkey-patching for pep8 and pycodestyle."""

try:
import pep8
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions src/flake8_polyfill/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Version information for Flake8 2.x and 3.x."""

import flake8

version_info = getattr(flake8, "__version_info__", None)
Expand Down
1 change: 1 addition & 0 deletions tests/test_options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for our options submodule."""

import optparse
import os
from unittest import mock
Expand Down
1 change: 1 addition & 0 deletions tests/test_stdin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for polyfill's stdin monkey patching."""

import flake8
import pep8
import pycodestyle
Expand Down

0 comments on commit 01fe344

Please sign in to comment.