Skip to content

Commit

Permalink
apply black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
gdiepen committed Nov 3, 2023
1 parent d295104 commit 2b07a1d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fsspec/implementations/webhdfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ def _connect(self):
if self.user is not None and self.password is not None:
from requests.auth import HTTPBasicAuth

self.session.auth = HTTPBasicAuth(
self.user, self.password
)
self.session.auth = HTTPBasicAuth(self.user, self.password)

def _call(self, op, method="get", path=None, data=None, redirect=True, **kwargs):
url = self._apply_proxy(self.url + quote(path or ""))
Expand Down

0 comments on commit 2b07a1d

Please sign in to comment.