💚 Fix CI installs and tests (#2)

This commit is contained in:
Sebastián Ramírez
2021-08-24 20:14:33 +02:00
committed by GitHub
parent ed0d6701dd
commit 7f8a1a5e3c
9 changed files with 87 additions and 33 deletions

View File

@@ -45,10 +45,10 @@ else:
class GenericSelectMeta(GenericMeta, _Select.__class__): # type: ignore
pass
class _Py36Select(_Select, Generic[_TSelect], metaclass=GenericSelectMeta):
class _Py36Select(_Select, Generic[_TSelect], metaclass=GenericSelectMeta): # type: ignore
pass
class _Py36SelectOfScalar(_Select, Generic[_TSelect], metaclass=GenericSelectMeta):
class _Py36SelectOfScalar(_Select, Generic[_TSelect], metaclass=GenericSelectMeta): # type: ignore
pass
# Cast them for editors to work correctly, from several tricks tried, this works