We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6102f commit f2a0d55Copy full SHA for f2a0d55
lint.py
@@ -4,19 +4,17 @@
4
5
6
def get_configuration() -> Namespace:
7
- parser = ArgumentParser(prog='LINT')
+ parser = ArgumentParser(description='pylint configuration')
8
parser.add_argument(
9
'-p',
10
'--path',
11
- help='path to directory you want to run pylint | ' 'Default: %(default)s | ' 'Type: %(type)s ',
12
default='pytorch_optimizer',
13
type=str,
14
)
15
16
'-t',
17
'--threshold',
18
- help='score threshold to fail pylint runner | ' 'Default: %(default)s | ' 'Type: %(type)s ',
19
- default=9.5,
+ default=9.75,
20
type=float,
21
22
0 commit comments