summaryrefslogtreecommitdiff
path: root/jsonschema/protocols.py
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2023-03-15 14:42:11 -0400
committerJulian Berman <Julian@GrayVines.com>2023-03-15 14:42:11 -0400
commitdb1e18591333fa72c30fac3b7dfc7ef175612578 (patch)
treeebf4723b1870eb78ebd6e94ed518a177b1e7a44f /jsonschema/protocols.py
parent61bd0b18822bec24fdd3a15cdaba040d65781384 (diff)
downloadjsonschema-db1e18591333fa72c30fac3b7dfc7ef175612578.tar.gz
flake8 -> ruff, a mostly painless affair.
Diffstat (limited to 'jsonschema/protocols.py')
-rw-r--r--jsonschema/protocols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonschema/protocols.py b/jsonschema/protocols.py
index f324ea1..4ad43e7 100644
--- a/jsonschema/protocols.py
+++ b/jsonschema/protocols.py
@@ -206,7 +206,7 @@ class Validator(Protocol):
ValidationError: [2, 3, 4] is too long
"""
- def evolve(self, **kwargs) -> "Validator":
+ def evolve(self, **kwargs) -> Validator:
"""
Create a new validator like this one, but with given changes.