Skip to content

Commit

Permalink
fix(tableau-exposer-crawler): addressing black complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
samanmasarat committed Jan 12, 2024
1 parent f91960b commit 2e69704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exposurescrawler/crawlers/tableau.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def retrieve_all_workbook_owner_map(tableau_client: TableauRestClient):
:param tableau_client: Tableau rest client
:return: the dictionary of {workbook_id, WorkbookItem}
"""
logger().info(f'⚙️ Retrieving all workbooks (batch)')
logger().info('⚙️ Retrieving all workbooks (batch)')

all_workbooks = tableau_client.retrieve_all_workbooks()
logger().info(f'✅ Fetched {len(all_workbooks)} workbooks')
Expand All @@ -84,7 +84,7 @@ def retrieve_all_user_id_map(tableau_client: TableauRestClient):
:param tableau_client: Tableau rest client
:return: the dictionary of {user_id, UserItem}
"""
logger().info(f'⚙️ Retrieving all users (batch)')
logger().info('⚙️ Retrieving all users (batch)')

all_users = tableau_client.retrieve_all_users()
logger().info(f'⚙️ Fetched {len(all_users)} users')
Expand Down

0 comments on commit 2e69704

Please sign in to comment.