File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ def get_by_id(self, id):
313313 """Get a specific server
314314
315315 :param id: int
316- :return: :class:`BoundServer <hcloud.servers.client.BoundServer>
316+ :return: :class:`BoundServer <hcloud.servers.client.BoundServer>`
317317 """
318318 response = self ._client .request (url = "/servers/{server_id}" .format (server_id = id ), method = "GET" )
319319 return BoundServer (self , response ['server' ])
Original file line number Diff line number Diff line change 66
77@pytest .fixture (autouse = True , scope = 'function' )
88def hetzner_client ():
9- hetzner_client = Client (token = "test-token" , api_endpoint = os .getenv ("FAKE_API_ENDPOINT" , default = "http://localhost:4000" ))
9+ hetzner_client = Client (token = "test-token" , api_endpoint = os .getenv ("FAKE_API_ENDPOINT" , default = "http://localhost:4000/v1 " ))
1010 return hetzner_client
You can’t perform that action at this time.
0 commit comments