mirror of
https://github.com/kennethreitz/neon-api-python.git
synced 2026-06-05 14:50:16 +00:00
Fix _url_join method in NeonAPI class
This commit is contained in:
@@ -123,7 +123,7 @@ class NeonAPI:
|
||||
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):
|
||||
|
||||
Reference in New Issue
Block a user