We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750fa41 commit 4b81b9dCopy full SHA for 4b81b9d
docs/spec/qualifiers.rst
@@ -212,9 +212,9 @@ Importing ``Final`` Variables
212
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
213
214
If a module declares a ``Final`` variable and another module imports that
215
-variable by name or by wildcard import, the imported symbol inherits the
216
-``Final`` type qualifier. Any attempt to assign a different value to this
217
-symbol should be flagged as an error by a type checker::
+variable in an import statement by name or wildcard, the imported symbol
+inherits the ``Final`` type qualifier. Any attempt to assign a different value
+to this symbol should be flagged as an error by a type checker::
218
219
# lib/submodule.py
220
from typing import Final
0 commit comments