Skip to content

Commit

Permalink
changed and to and not
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd-mueller committed Nov 6, 2024
1 parent 3523047 commit 2f0985a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/profile_generation_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ def generate_types_cardianlity(g, prop):
# for g in range(data_length):
# print(data, len(data))
for g in data["@graph"]:
if not isinstance(g, int) and isinstance(g, str):
if not isinstance(g, int) and not isinstance(g, str):
if g["@type"] == "rdf:Property":
external_properties.append(g["@id"])

Expand Down

0 comments on commit 2f0985a

Please sign in to comment.