From d2583247dbdcccb069213e5389e5695237577626 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 18:36:19 +0100 Subject: Fixing mypy error (Couldn't detect type checking with type, changed to isinstance) --- setup.cfg | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index ed4a420..09dbcb2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,13 +23,14 @@ classifiers = Operating System :: POSIX :: Linux [options] -package_dir= - =minishell_test +package_dir = + = minishell_test packages = find: python_requires = >=3.6 -# [options.packages.find] -# where = minishell_test +# [options.entry_points] +# console_scripts = +# minishell-test = minishell_test.__main__:main [flake8] ignore = E501,E221,W504,E241 -- cgit