Add missing return type in Core constructors (#50884)

This commit is contained in:
Ruslan Sayfutdinov 2021-05-20 16:53:29 +01:00 committed by GitHub
parent cf228e3fe5
commit 391b2f8ccd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 29 additions and 25 deletions

View file

@ -175,7 +175,7 @@ class TupleWrapper(tuple, ResultWrapper):
# pylint: disable=super-init-not-called
def __init__(self, value: tuple, *, render_result: str | None = None):
def __init__(self, value: tuple, *, render_result: str | None = None) -> None:
"""Initialize a new tuple class."""
self.render_result = render_result