Replace double quote type annotations with single quotes

This commit is contained in:
Kai A. Hiller
2018-08-09 14:36:14 +02:00
parent 66683151ec
commit 81531235bc
6 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ ManagementRoom = NewType('ManagementRoom', Tuple[MatrixRoomID, MatrixUserID])
async def _find_rooms(intent: IntentAPI) -> Tuple[List[ManagementRoom], List[MatrixRoomID],
List["po.Portal"], List["po.Portal"]]:
List['po.Portal'], List['po.Portal']]:
management_rooms = [] # type: List[ManagementRoom]
unidentified_rooms = [] # type: List[MatrixRoomID]
portals = [] # type: List[po.Portal]