From 2efb448a6b6f77a6d2d970a22e14a649619ee6c1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:11:48 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.cfg | 7 +------ tests/test_options.py | 1 - 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0c0cc53..c75ec13 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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 diff --git a/tests/test_options.py b/tests/test_options.py index 1e4f96a..21d83a1 100644 --- a/tests/test_options.py +++ b/tests/test_options.py @@ -93,7 +93,6 @@ def test_generate_callback_from_composition( ) as parse_comma_separated_list, mock.patch( "flake8_polyfill.options.parse_normalized_paths" ) as parse_normalized_paths: - parse_comma_separated_list.side_effect = lambda v: f"C({v})" parse_normalized_paths.side_effect = lambda v: f"N({v})" callback(option, opt_str, value, parser)