Fix type hints in space summary tests. (#10575)

And ensure that the file is checked via mypy.
This commit is contained in:
Patrick Cloke 2021-08-11 10:43:40 -04:00 committed by GitHub
parent 339c3918e1
commit fab352ac2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 9 deletions

View file

@ -47,10 +47,10 @@ class RestHelper:
def create_room_as(
self,
room_creator: str = None,
room_creator: Optional[str] = None,
is_public: bool = True,
room_version: str = None,
tok: str = None,
room_version: Optional[str] = None,
tok: Optional[str] = None,
expect_code: int = 200,
extra_content: Optional[Dict] = None,
custom_headers: Optional[