Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjushahgupta committed Aug 23, 2024
1 parent d122607 commit dc7c26c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingestr/src/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ def dlt_source(self, uri: str, table: str, **kwargs):
if table in ["channels", "users", "access_logs"]:
endpoint = table
elif table.startswith("messages"):
channles_part = table.split(":")[1]
msg_channels = channles_part.split(",")
channels_part = table.split(":")[1]
msg_channels = channels_part.split(",")
endpoint = "messages"
else:
raise ValueError(
Expand Down

0 comments on commit dc7c26c

Please sign in to comment.