Skip to content
Merged
Prev Previous commit
Next Next commit
Fixed type hint
  • Loading branch information
annatisch committed Oct 30, 2019
commit 9f0e75cb23d4e16cabcbd51ac6b267c7be9a56f2
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
}

def _get_match_headers(kwargs):
# type: (str) -> Tuple(Dict[str, Any])
# type: (Dict[str, Any]) -> Tuple(Optional[str], Optional[str])
if_match = kwargs.pop('if_match', None)
if_none_match = kwargs.pop('if_none_match', None)
match_condition = kwargs.pop('match_condition', None)
Expand Down