Changeset - 1ee5e95a6cc2
[Not reviewed]
default
0 1 0
Dennis Fink - 2 years ago 2022-02-28 19:01:12
dennis.fink@c3l.lu
Make it python3.7 compatible
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
stockcli/utils.py
Show inline comments
 
import logging
 
import string
 
from operator import attrgetter
 
from typing import Any, Optional
 
from typing import Any, Dict, Optional
 

	
 
import click
 
import requests
 
@@ -52,11 +52,11 @@ def get_request(url_path: str) -> Any:
 
    return make_request("get", url_path)
 

	
 

	
 
def post_request(url_path: str, data: dict[str, Any]) -> Any:
 
def post_request(url_path: str, data: Dict[str, Any]) -> Any:
 
    return make_request("post", url_path, data)
 

	
 

	
 
def put_request(url_path: str, data: dict[str, Any]) -> Any:
 
def put_request(url_path: str, data: Dict[str, Any]) -> Any:
 
    return make_request("put", url_path, data)
 

	
 

	
0 comments (0 inline, 0 general)