Skip to content

Commit

Permalink
Fix base url
Browse files Browse the repository at this point in the history
  • Loading branch information
vuilleumierc committed Sep 28, 2024
1 parent 87d06c7 commit 290990a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geoservercloud/geoservercloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class GeoServerCloud:
def __init__(
self,
url: str = "http://localhost:9090/geoserver/cloud/",
url: str = "http://localhost:9090/geoserver/cloud",
user: str = "admin",
password: str = "geoserver", # nosec
) -> None:

self.url: str = url
self.url: str = url.strip("/")
self.user: str = user
self.password: str = password
self.auth: tuple[str, str] = (user, password)
Expand Down

0 comments on commit 290990a

Please sign in to comment.