Skip to content

Commit 0e49379

Browse files
committed
Add missing paren in docs
1 parent ceede42 commit 0e49379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/errors.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ the schema each of these errors come from. In the case of sub-errors from the
103103
.. code-block:: python
104104
105105
>>> for e in errors:
106-
... for sube in sorted(e.context, key=lambda e: e.schema_path:
106+
... for sube in sorted(e.context, key=lambda e: e.schema_path):
107107
... print list(sube.schema_path), sube
108108
[0, 'type'] {} is not of type 'string'
109109
[1, 'type'] {} is not of type 'integer'

0 commit comments

Comments
 (0)