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:
Christian Kellner 2021-08-16 20:07:11 +02:00 committed by Tom Gundersen
parent f569c38ea9
commit 2b324d3d89

View file

@ -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)