Skip to content

Commit c52d924

Browse files
committed
Final preps for the first release
1 parent d322265 commit c52d924

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/conf.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
# -- Project information -----------------------------------------------------
2222

2323
def _get_project_meta():
24-
import tomlkit
24+
import tomlkit # noqa: Z435
2525

2626
with open('../pyproject.toml') as pyproject:
27-
contents = pyproject.read()
27+
file_contents = pyproject.read()
2828

29-
return tomlkit.parse(contents)['tool']['poetry']
29+
return tomlkit.parse(file_contents)['tool']['poetry']
3030

3131

3232
pkg_meta = _get_project_meta()
3333
project = pkg_meta['name']
34-
copyright = '2019, wemake.services'
34+
copyright = '2019, wemake.services' # noqa: A001
3535
author = 'wemake.services'
3636

3737
# The short X.Y version
@@ -137,7 +137,7 @@ def _get_project_meta():
137137
'globaltoc.html',
138138
'github.html',
139139
'moreinfo.html',
140-
]
140+
],
141141
}
142142

143143

0 commit comments

Comments
 (0)