Skip to content

Commit 60639c5

Browse files
Update options.py: typo scrict_equality and phrasing (#19806)
Fixes a typo `scrict_equality` which meant `strict_equality`. While in there, I also changed a preposition to be more specific.
1 parent 8437cf5 commit 60639c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def __init__(self) -> None:
232232
# This makes 1 == '1', 1 in ['1'], and 1 is '1' errors.
233233
self.strict_equality = False
234234

235-
# Extend the logic of `scrict_equality` for comparisons with `None`.
235+
# Extend the logic of `strict_equality` to comparisons with `None`.
236236
self.strict_equality_for_none = False
237237

238238
# Disable treating bytearray and memoryview as subtypes of bytes

0 commit comments

Comments
 (0)