Skip to content

Commit e05ec5b

Browse files
committed
minor type fix - null string instead of None
1 parent b051b27 commit e05ec5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pori_python/graphkb/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def cache_key(request_body) -> str:
9898
class GraphKBConnection:
9999
def __init__(
100100
self,
101-
url: str = os.environ.get("GRAPHKB_URL"),
101+
url: str = os.environ.get("GRAPHKB_URL", ""),
102102
username: str = "",
103103
password: str = "",
104104
use_global_cache: bool = True,

0 commit comments

Comments
 (0)