Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 29, 2023
1 parent 1978e48 commit f653345
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jenkinsapi/command_line/jenkins_invoke.py
Expand Up @@ -137,9 +137,9 @@ def invoke_job(self, jobname, block, token):
Invokes a job.
"""
type_checks = (
('jobname', jobname, str),
('block', block, bool),
('token', token, Optional[str])
("jobname", jobname, str),
("block", block, bool),
("token", token, Optional[str]),
)
for name, value, param_type in type_checks:
if not isinstance(value, param_type):
Expand Down

0 comments on commit f653345

Please sign in to comment.