Skip to content

Commit c3ada96

Browse files
committed
update type for fetch()
1 parent aea5636 commit c3ada96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema_salad/ref_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ def fetch_text(self, url):
621621
else:
622622
raise ValueError('Unsupported scheme in url: %s' % url)
623623

624-
def fetch(self, url, inject_ids=True): # type: (unicode) -> Any
624+
def fetch(self, url, inject_ids=True): # type: (unicode, bool) -> Any
625625
if url in self.idx:
626626
return self.idx[url]
627627
try:

0 commit comments

Comments
 (0)