diff --git a/.automation/test/python_mypy/python_good_1.py b/.automation/test/python_mypy/python_good_1.py index 1b6ce8cbf52..c8c46652cb2 100644 --- a/.automation/test/python_mypy/python_good_1.py +++ b/.automation/test/python_mypy/python_good_1.py @@ -197,4 +197,4 @@ def copy_labels(source_repo, target_repo, dry): if __name__ == "__main__": # Pylint doesn't know that @click.command takes care of injecting the # function parameters. Disabling Pylint error. - copy_labels("wesh","weshwesh","") # pylint: disable=no-value-for-parameter + copy_labels() # pylint: disable=no-value-for-parameter diff --git a/.automation/test/python_mypy/python_good_2.py b/.automation/test/python_mypy/python_good_2.py index 1b6ce8cbf52..c8c46652cb2 100644 --- a/.automation/test/python_mypy/python_good_2.py +++ b/.automation/test/python_mypy/python_good_2.py @@ -197,4 +197,4 @@ def copy_labels(source_repo, target_repo, dry): if __name__ == "__main__": # Pylint doesn't know that @click.command takes care of injecting the # function parameters. Disabling Pylint error. - copy_labels("wesh","weshwesh","") # pylint: disable=no-value-for-parameter + copy_labels() # pylint: disable=no-value-for-parameter