Skip to main content

Run ruff format

ID
883d0da
date
2024-06-02 09:19:45+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
5afe0f9
message
Run `ruff format`
changed files
1 file, 3 additions, 3 deletions

Changed files

aws/dynamols.py (4887) → aws/dynamols.py (4889)

diff --git a/aws/dynamols.py b/aws/dynamols.py
index 6f2cf1a..ea03aca 100755
--- a/aws/dynamols.py
+++ b/aws/dynamols.py
@@ -112,9 +112,9 @@ def parallel_scan_table(sess, *, TableName, **kwargs):
             # of entries in the queue if we've finished scanning the table, so
             # we need to spot that and not throw.
             for scan_params in itertools.islice(scans_to_run, len(done)):
-                futures[
-                    executor.submit(dynamo_client.scan, **scan_params)
-                ] = scan_params
+                futures[executor.submit(dynamo_client.scan, **scan_params)] = (
+                    scan_params
+                )
 
 
 def list_table_names(sess):