File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
project = "domdf_python_tools"
28
28
slug = re .sub (r'\W+' , '-' , project .lower ())
29
29
release = version = __version__
30
- copyright = "2019-2020 Dominic Davis-Foster" # noqa
30
+ copyright = "2019-2020 Dominic Davis-Foster" # pylint: disable=redefined-builtin
31
31
language = 'en'
32
32
package_root = "domdf_python_tools"
33
33
Original file line number Diff line number Diff line change 8
8
from docutils .core import publish_file
9
9
from io import StringIO
10
10
11
- from __pkginfo__ import * # noqa
11
+ from __pkginfo__ import * # pylint: disable=wildcard-import
12
12
13
13
recipe_dir = repo_root / "conda"
14
14
Original file line number Diff line number Diff line change 2
2
# This file is managed by `git_helper`. Don't edit it directly
3
3
"""Setup script"""
4
4
5
- from __pkginfo__ import * # noqa
5
+ from __pkginfo__ import * # pylint: disable=wildcard-import
6
6
7
7
from setuptools import setup , find_packages
8
8
You can’t perform that action at this time.
0 commit comments