Skip to content

Commit 1f55044

Browse files
committed
Fix type hints
1 parent 5b6b45c commit 1f55044

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

checkpoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ def search() -> (
11351135

11361136

11371137
@app.get("/view/<directory_id>/whitepages")
1138-
def get_whitepages_records(directory_id: str) -> List[Dict[str, Dict[str, List[str]]]]:
1138+
def get_whitepages_records(directory_id: str) -> Any:
11391139
"""
11401140
Get Whitepages entries for a provided gtPersonDirectoryId
11411141
"""
@@ -1184,7 +1184,7 @@ def get_gted_accounts(directory_id: str) -> List[Dict[str, Any]]:
11841184

11851185

11861186
@app.get("/view/<directory_id>/gtad")
1187-
def get_gtad_account(directory_id: str) -> Dict[str, Any]:
1187+
def get_gtad_account(directory_id: str) -> Any:
11881188
"""
11891189
Get the GTAD account for a given gtPersonDirectoryId
11901190
"""

0 commit comments

Comments
 (0)