Skip to content
Snippets Groups Projects
Commit 75db0a23 authored by Timo Koch's avatar Timo Koch
Browse files

[python] Fix pep8 issue

parent 834c8607
No related branches found
No related tags found
1 merge request!2971[python] Fix pep8 issue
Pipeline #11632 waiting for manual action
...@@ -257,7 +257,7 @@ class TypeTag: ...@@ -257,7 +257,7 @@ class TypeTag:
"or a string for an existing TypeTag. " "or a string for an existing TypeTag. "
f"List of existing TypeTags: {existingTypeTags.keys()}" f"List of existing TypeTags: {existingTypeTags.keys()}"
) )
if parentTypeTag not in existingTypeTags.keys(): if parentTypeTag not in existingTypeTags:
raise ValueError( raise ValueError(
f"Unknown TypeTag {parentTypeTag}. " f"Unknown TypeTag {parentTypeTag}. "
f"List of existing TypeTags: {existingTypeTags.keys()}" f"List of existing TypeTags: {existingTypeTags.keys()}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment