summaryrefslogtreecommitdiff
path: root/jsonschema/_validators.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/_validators.py')
-rw-r--r--jsonschema/_validators.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/jsonschema/_validators.py b/jsonschema/_validators.py
index b1045d6..ef4cd83 100644
--- a/jsonschema/_validators.py
+++ b/jsonschema/_validators.py
@@ -322,8 +322,6 @@ def type_draft3(validator, types, instance, schema):
all_errors = []
for index, type in enumerate(types):
- if type == "any":
- return
if validator.is_type(type, "object"):
errors = list(validator.descend(instance, type, schema_path=index))
if not errors: