Skip to content

Commit 4c9cdf9

Browse files
author
rob
committed
make linter happy
1 parent e3004ff commit 4c9cdf9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dropbox/dropbox.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,4 +607,4 @@ def _get_dropbox_client_with_select_header(self, select_header_name, team_member
607607

608608
new_headers = self._headers.copy() if self._headers else {}
609609
new_headers[select_header_name] = team_member_id
610-
return self.clone(headers=new_headers)
610+
return self.clone(headers=new_headers)

test/test_dropbox.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ def test_team(self, dbxt):
148148
def test_with_path_root_constructor(self, dbx):
149149
# Verify valid mode types
150150
for mode, ns_id in (
151-
("home", None),
152-
("root", "123"),
153-
("namespace_id", "123")
151+
("home", None),
152+
("root", "123"),
153+
("namespace_id", "123")
154154
):
155155
dbx_new = dbx.with_path_root(mode, ns_id)
156156
self.assertIsNot(dbx_new, dbx)

0 commit comments

Comments
 (0)