Skip to content

Commit 267d376

Browse files
authored
Update adopting strict docs for 1.0 (#14865)
1 parent 287c45a commit 267d376

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/source/existing_code.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,14 @@ An excellent goal to aim for is to have your codebase pass when run against ``my
183183
This basically ensures that you will never have a type related error without an explicit
184184
circumvention somewhere (such as a ``# type: ignore`` comment).
185185

186-
The following config is equivalent to ``--strict`` (as of mypy 0.990):
186+
The following config is equivalent to ``--strict`` (as of mypy 1.0):
187187

188188
.. code-block:: text
189189
190190
# Start off with these
191191
warn_unused_configs = True
192192
warn_redundant_casts = True
193193
warn_unused_ignores = True
194-
no_implicit_optional = True
195194
196195
# Getting these passing should be easy
197196
strict_equality = True

0 commit comments

Comments
 (0)