Skip to content

Commit 0de7fb5

Browse files
authored
Resolve conflicts
1 parent c3e483b commit 0de7fb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonschema/validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ def store_subschema(self, schema, last_url=None):
887887
return
888888

889889
for k in schema.keys():
890-
if k in [u"id", u"$id"] and isinstance(schema[k], str_types):
890+
if k in [u"id", u"$id"] and isinstance(schema[k], str):
891891
#Splicing the url in the last id with the url in this id,
892892
#and store last_url at the same time.
893893
last_url = urljoin(last_url, schema[k], allow_fragments=True)

0 commit comments

Comments
 (0)