You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the pyproject.toml used in attrs contains the following:
[tool.pyright]
# We need epexrimental features for converters.
enableExperimentalFeatures = true
This comment was previously true, but this is no longer necessary. Now that the converters functionality is officially incorporated into the typing spec, it is no longer considered experimental. All versions of pyright from 1.1.373 onward support this functionality without setting the "enableExperimentalFeatures" flag to true.
I noticed that this configuration flag was enabled because I'm implementing some new experimental features in pyright, and the regression tests that I run on attrs triggered usage of the new experimental feature.
The text was updated successfully, but these errors were encountered:
I noticed that the pyproject.toml used in attrs contains the following:
This comment was previously true, but this is no longer necessary. Now that the converters functionality is officially incorporated into the typing spec, it is no longer considered experimental. All versions of pyright from 1.1.373 onward support this functionality without setting the "enableExperimentalFeatures" flag to true.
I noticed that this configuration flag was enabled because I'm implementing some new experimental features in pyright, and the regression tests that I run on attrs triggered usage of the new experimental feature.
The text was updated successfully, but these errors were encountered: