Skip to content

Commit 99c078f

Browse files
committed
Complete properly placing placeholders where required
It seems like some more files did have this problem. I have done an extensive search and fix of all these files and this is my final submission. There might be some parts still gone unnoticed as Python aparently doesn't consider the lack of placeholders an issue. No errors have popped up and tests work.
1 parent c760f13 commit 99c078f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openapi_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def get_class_details(global_: Dict[str,
235235
write=True))
236236
else:
237237
global_[class_name]["prop_definition"].append(
238-
HydraClassProp("vocab:".format(prop), prop, required=flag,
238+
HydraClassProp("vocab:{}".format(prop), prop, required=flag,
239239
read=True, write=True))
240240
else:
241241
global_[class_name]["prop_definition"].append(HydraClassProp(

0 commit comments

Comments
 (0)