We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d71716c commit 6f11263Copy full SHA for 6f11263
data_contract_specification.py
@@ -331,6 +331,7 @@ def to_yaml(self) -> str:
331
@classmethod
332
def json_schema(cls):
333
package_name = __name__.split('.')[0]
334
+ json_schema = "datacontract-specification-json-schema-v1.1.0.json"
335
with impresources.open_text(package_name,
- "datacontract-specification-json-schema-v1.1.0.json") as file:
336
+ json_schema) as file:
337
return file.read()
0 commit comments