Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Feb 2, 2024
1 parent 565966c commit d3ca95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ogc/bblocks/postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def do_postprocess(bblock: BuildingBlock, light: bool = False) -> bool:
ld_context_url = './' + os.path.relpath(bblock.jsonld_context, output_file_root)
bblock.metadata['ldContext'] = ld_context_url

if isinstance(bblock, str) and is_url(bblock.schema):
if isinstance(bblock.schema, str) and is_url(bblock.schema):
bblock.metadata['sourceSchema'] = bblock.schema
elif bblock.schema.is_file():
if base_url:
Expand Down

0 comments on commit d3ca95c

Please sign in to comment.