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 a18a7ce commit 3837b2bCopy full SHA for 3837b2b
crates/ty_python_semantic/src/types.rs
@@ -6910,8 +6910,9 @@ bitflags! {
6910
const NOT_REQUIRED = 1 << 4;
6911
/// `typing_extensions.ReadOnly`
6912
const READ_ONLY = 1 << 5;
6913
- /// An implicit instance attribute with it possibly unbound according to
6914
- /// local control flow within the method it is defined in.
+ /// An implicit instance attribute which is possibly unbound according
+ /// to local control flow within the method it is defined in. This flag
6915
+ /// overrules the `Boundness` information on `PlaceAndQualifiers`.
6916
const POSSIBLY_UNBOUND_IMPLICIT_ATTRIBUTE = 1 << 6;
6917
}
6918
0 commit comments