Skip to content

Commit 5ef47d3

Browse files
authored
Issue fix after PEP8
1 parent c21fd7b commit 5ef47d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_http_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _build_client(self, name=None):
147147
:type name: string
148148
:return: A Client object
149149
"""
150-
url_path = '{}{}'.format(self._url_path, [name]) if name else self._url_path
150+
url_path = self._url_path + [name] if name else self._url_path
151151
return Client(host=self.host,
152152
version=self._version,
153153
request_headers=self.request_headers,

0 commit comments

Comments
 (0)