File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 check_python_module ,
1818 check_python_module_recursively )
1919
20- __version__ : str = '0.1.3 '
20+ __version__ : str = '0.1.4 '
Original file line number Diff line number Diff line change 66
77import numdoclint
88
9- log_format = '-----------------------------------------\n ' \
10- '%(levelname)s : %(asctime)s : %(message)s'
9+ log_format : str = \
10+ '-----------------------------------------\n ' \
11+ '%(levelname)s : %(asctime)s : %(message)s'
1112logging .basicConfig (level = logging .DEBUG , format = log_format )
1213
1314
14- def main ():
15+ def main () -> None :
1516 """
1617 Run tests and lint when executed via the command line.
1718 """
Original file line number Diff line number Diff line change 22
33from numdoclint import __version__ as version
44
5- description = 'Numdoc Lint provides features such as ' \
6- 'NumPy style docstring code checking.'
5+ description : str = (
6+ 'Numdoc Lint provides features such as '
7+ 'NumPy style docstring code checking.'
8+ )
79
8- long_description = \
9- 'Numdoc Lint provides features such as NumPy style ' \
10- 'docstring code checking.\n \n Please see github for more detail.' \
10+ long_description : str = (
11+ 'Numdoc Lint provides features such as NumPy style '
12+ 'docstring code checking.\n \n Please see github for more detail.'
1113 '\n https://github.com/simon-ritchie/numdoclint'
14+ )
1215
1316setup (
1417 name = 'numdoclint' ,
You can’t perform that action at this time.
0 commit comments