File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ def _namedAnyWithDefault(name):
183
183
"--base-uri" ,
184
184
help = """
185
185
use this option to indicate that the schema contains some references
186
- to some local or remote files. With this option, the validator will
186
+ to some local or remote files. With this option, the validator will
187
187
try to resolve those references as paths relative to the given schema.
188
188
""" ,
189
189
)
@@ -271,7 +271,9 @@ def load(_):
271
271
else :
272
272
file_prefix = "file:///{}/" if "nt" == os .name else "file://{}/"
273
273
resolver = RefResolver (
274
- base_uri = file_prefix .format (os .path .abspath (arguments ["base_uri" ])),
274
+ base_uri = file_prefix .format (
275
+ os .path .abspath (arguments ["base_uri" ])
276
+ ),
275
277
referrer = schema ,
276
278
)
277
279
You can’t perform that action at this time.
0 commit comments