plugin/cli: remove type annotation
Remove the single string type annotation; it does not gain us much and seems to be the only thing missing for python 2.7 (RHEL 7) support.
This commit is contained in:
parent
f569c38ea9
commit
2b324d3d89
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ def parse_args(argv):
|
|||
return opts
|
||||
|
||||
|
||||
def check_target(session, name: str):
|
||||
def check_target(session, name):
|
||||
"""Check the target with name exists and has a destination tag"""
|
||||
|
||||
target = session.getBuildTarget(name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue