Skip to content

Commit a62c3a3

Browse files
fix format
1 parent 51348ee commit a62c3a3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

metadata-ingestion/src/datahub/ingestion/source/tableau/tableau_server_wrapper.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ class UserInfo:
1212
site_id: str
1313

1414
def is_site_administrator_explorer(self):
15-
return self.site_role in [c.ROLE_SITE_ADMIN_EXPLORER, c.ROLE_SITE_ADMIN_CREATOR, ROLE_SERVER_ADMIN]
15+
return self.site_role in [
16+
c.ROLE_SITE_ADMIN_EXPLORER,
17+
c.ROLE_SITE_ADMIN_CREATOR,
18+
ROLE_SERVER_ADMIN
19+
]
1620

1721
@staticmethod
1822
def from_server(server: Server) -> "UserInfo":

0 commit comments

Comments
 (0)