Skip to content

Commit 68ce374

Browse files
committed
fix(docs): format
1 parent 5c0c70e commit 68ce374

File tree

1 file changed

+1
-1
lines changed
  • specs/generators/packages/spec/src/spec/forms

1 file changed

+1
-1
lines changed

specs/generators/packages/spec/src/spec/forms/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def model_post_init(self, context: typing.Any) -> None: # noqa: ANN401
137137
try:
138138
validator.validate(instance=self.root) # type: ignore reportUnknownMemberType
139139
except Exception as e:
140-
schema_txt = json.dumps(self.root,indent=2)
140+
schema_txt = json.dumps(self.root, indent=2)
141141
msg = f"Generic Form Schema must be a valid Json Schema 2020-12. {e}\n{schema_txt}"
142142
raise ValueError(msg) from e
143143

0 commit comments

Comments
 (0)