Skip to content

Commit

Permalink
fix(ingest/looker): stringify looker user ids (#7531)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Mar 10, 2023
1 parent e6fe54e commit 759e51b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ def get_by_id(self, id_: str) -> Optional[LookerUser]:
logger.debug(f"Will get user {id_}")

raw_user: Optional[User] = self.looker_api_wrapper.get_user(
id_, user_fields=self.fields
str(id_), user_fields=self.fields
)
if raw_user is None:
return None
Expand Down

0 comments on commit 759e51b

Please sign in to comment.