diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-01-12 12:33:09 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-01-12 12:36:25 -0500 |
| commit | ae7e74487e5aff1b9ebb832a704055ddcf042567 (patch) | |
| tree | baa072e0b2d3f2eaafa7a2edaacbc7688e2329de /lib/sqlalchemy/util/__init__.py | |
| parent | 4bd07126f072dfa0d078644c85a896fc165f2137 (diff) | |
| download | sqlalchemy-ae7e74487e5aff1b9ebb832a704055ddcf042567.tar.gz | |
replace @decorated_property decorator
This decorator is no longer necessary as of Mypy
0.981 [1].
In current mypy versions, we require direct use of
`@property` for return types of these methods to be
recognized
[1] https://github.com/python/mypy/issues/1362
Change-Id: Ibc36083dec854c5f9140a9b621e9bf9d5bb4fb61
Diffstat (limited to 'lib/sqlalchemy/util/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/util/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/__init__.py b/lib/sqlalchemy/util/__init__.py index cb69c28a7..d443cf031 100644 --- a/lib/sqlalchemy/util/__init__.py +++ b/lib/sqlalchemy/util/__init__.py @@ -76,7 +76,6 @@ from .deprecations import became_legacy_20 as became_legacy_20 from .deprecations import deprecated as deprecated from .deprecations import deprecated_cls as deprecated_cls from .deprecations import deprecated_params as deprecated_params -from .deprecations import deprecated_property as deprecated_property from .deprecations import moved_20 as moved_20 from .deprecations import warn_deprecated as warn_deprecated from .langhelpers import add_parameter_text as add_parameter_text |
