remove sealed from compat

This commit is contained in:
Thomas Grainger 2022-10-09 17:04:58 +01:00 committed by GitHub
parent ff4140b54a
commit 59da17ddd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -342,12 +342,6 @@ else:
return f
# TODO: sealed classes are not supported yet
# https://github.com/mypyc/mypyc/issues/846
def sealed(f: _T) -> _T:
return f
if sys.version_info >= (3, 8):
from functools import cached_property as cached_property
else: