File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
# -- Project information -----------------------------------------------------
22
22
23
23
def _get_project_meta ():
24
- import tomlkit
24
+ import tomlkit # noqa: Z435
25
25
26
26
with open ('../pyproject.toml' ) as pyproject :
27
- contents = pyproject .read ()
27
+ file_contents = pyproject .read ()
28
28
29
- return tomlkit .parse (contents )['tool' ]['poetry' ]
29
+ return tomlkit .parse (file_contents )['tool' ]['poetry' ]
30
30
31
31
32
32
pkg_meta = _get_project_meta ()
33
33
project = pkg_meta ['name' ]
34
- copyright = '2019, wemake.services'
34
+ copyright = '2019, wemake.services' # noqa: A001
35
35
author = 'wemake.services'
36
36
37
37
# The short X.Y version
@@ -137,7 +137,7 @@ def _get_project_meta():
137
137
'globaltoc.html' ,
138
138
'github.html' ,
139
139
'moreinfo.html' ,
140
- ]
140
+ ],
141
141
}
142
142
143
143
You can’t perform that action at this time.
0 commit comments