add typing to security

This commit is contained in:
Chih Cheng Liang
2019-08-01 19:12:11 +08:00
parent 030abcc959
commit a86f010c95
7 changed files with 102 additions and 26 deletions

View File

@ -0,0 +1,4 @@
from typing import TypeVar, Dict, Any, NewType
TSecurityDetails = NewType("TSecurityDetails", Dict[str, Any])