Skip to content

Commit

Permalink
Fix _url_join method in NeonAPI class
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz committed Feb 7, 2024
1 parent 05b6eba commit 15f6f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _request(
def _url_join(self, *args):
"""Join a list of URL components into a single URL."""

return "/".join(*args)
return "/".join(args)

@classmethod
def from_environ(cls):
Expand Down

0 comments on commit 15f6f7a

Please sign in to comment.