Skip to content

Commit d9e1ce3

Browse files
committed
lint
1 parent 95fdc0b commit d9e1ce3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

geoengine/auth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def __init__(self, server_url: str, credentials: Tuple[str, str] = None) -> None
5252
session = req.post(f'{server_url}/login', json={"email": credentials[0], "password": credentials[1]}).json()
5353
elif "GEOENGINE_EMAIL" in os.environ and "GEOENGINE_PASSWORD" in os.environ:
5454
session = req.post(f'{server_url}/login',
55-
json={"email": os.environ.get("GEOENGINE_EMAIL"), "password": os.environ.get("GEOENGINE_PASSWORD")}).json()
55+
json={"email": os.environ.get("GEOENGINE_EMAIL"),
56+
"password": os.environ.get("GEOENGINE_PASSWORD")}).json()
5657
else:
5758
session = req.post(f'{server_url}/anonymous').json()
5859

0 commit comments

Comments
 (0)