Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unneeded/wrong parameters in method calls
Fix the following mypy errors: ``` lib/tool_shed/test/functional/test_1140_simple_repository_dependency_multiple_owners.py:108: error: Unexpected keyword argument "filepath" for "commit_tar_to_repository" of "ShedTwillTestCase" [call-arg] self.commit_tar_to_repository( ^ lib/tool_shed/test/base/twilltestcase.py:1156: note: "commit_tar_to_repository" of "ShedTwillTestCase" defined here lib/tool_shed/test/functional/test_1140_simple_repository_dependency_multiple_owners.py:108: error: Unexpected keyword argument "valid_tools_only" for "commit_tar_to_repository" of "ShedTwillTestCase" [call-arg] self.commit_tar_to_repository( ^ lib/tool_shed/test/functional/test_1140_simple_repository_dependency_multiple_owners.py:108: error: Unexpected keyword argument "uncompress_file" for "commit_tar_to_repository" of "ShedTwillTestCase" [call-arg] self.commit_tar_to_repository( ^ lib/tool_shed/test/functional/test_1140_simple_repository_dependency_multiple_owners.py:108: error: Unexpected keyword argument "remove_repo_files_not_in_tar" for "commit_tar_to_repository" of "ShedTwillTestCase" [call-arg] self.commit_tar_to_repository( ^ lib/tool_shed/test/functional/test_1140_simple_repository_dependency_multiple_owners.py:108: error: Unexpected keyword argument "strings_not_displayed" for "commit_tar_to_repository" of "ShedTwillTestCase"; did you mean "strings_displayed"? [call-arg] self.commit_tar_to_repository( ^ lib/tool_shed/test/functional/test_0420_citable_urls_for_repositories.py:170: error: Need type annotation for "strings_not_displayed_in_iframe" (hint: "strings_not_displayed_in_iframe: List[<type>] = ...") [var-annotated] strings_not_displayed_in_iframe = [] ^ ```
- Loading branch information