Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Apr 11, 2023
1 parent 1f32ad8 commit 6cb520e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tap_dynamodb/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ def discover_streams(self) -> list[streams.TableStream]:
"""
obj = DynamoDB(self.config)
discovered_streams = []
for table_name in (
self.config.get("tables") or obj.list_tables()
):
for table_name in self.config.get("tables") or obj.list_tables():
try:
stream = streams.TableStream(
tap=self,
Expand Down

0 comments on commit 6cb520e

Please sign in to comment.