Skip to content
Snippets Groups Projects
Verified Commit 685641f5 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT: Small style changes.

parent 18227c66
No related branches found
No related tags found
2 merge requests!39Release 0.4.0,!37F extern name
Pipeline #21044 passed
......@@ -141,8 +141,8 @@ class DataModel(dict):
# in via the extern keyword:
ref = db.Property(name=ent.name).retrieve()
else:
q = db.Query("FIND * with id={}".format(ent.id))
ref = q.execute(unique=True)
query = db.Query(f"FIND * with id={ent.id}")
ref = query.execute(unique=True)
diff = (describe_diff(*compare_entities(ent, ref
), name=ent.name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment