6262 type = click .Choice (["colorized" , "text" , "raw" ]),
6363 help = "Output format (colorized)." ,
6464)
65- def main (sample , dry_run , limit , no_limit , resume ,
65+ def main (* , sample , dry_run , limit , no_limit , resume ,
6666 template_path , database_path , config_path ,
6767 output_format ):
6868 """
@@ -74,7 +74,6 @@ def main(sample, dry_run, limit, no_limit, resume,
7474 # We need an argument for each command line option. That also means a lot
7575 # of local variables.
7676 # pylint: disable=too-many-arguments
77- # pylint: disable=too-many-positional-arguments
7877 # pylint: disable=too-many-locals
7978
8079 # Convert paths from string to Path objects
@@ -143,9 +142,7 @@ def main(sample, dry_run, limit, no_limit, resume,
143142
144143
145144if __name__ == "__main__" :
146- # No value for parameter, that's how click works
147- # pylint: disable=no-value-for-parameter
148- main ()
145+ main () # pylint: disable=missing-kwoa
149146
150147
151148def check_input_files (template_path , database_path , config_path , sample ):
0 commit comments