make black happy

This commit is contained in:
jess 2020-04-06 19:55:54 +10:00
parent 4c2460ddfd
commit 49fd7988ab

View File

@ -126,7 +126,7 @@ class TestCore:
conn.put_item(
TableName="test-streams",
Item={"id": {"S": "entry1"}, "first_col": {"S": "foo"}}
Item={"id": {"S": "entry1"}, "first_col": {"S": "foo"}},
)
conn.put_item(
TableName="test-streams",
@ -134,7 +134,7 @@ class TestCore:
"id": {"S": "entry1"},
"first_col": {"S": "bar"},
"second_col": {"S": "baz"},
"a": {"L": [{"M": {"b": {"S": "bar1"}}}]}
"a": {"L": [{"M": {"b": {"S": "bar1"}}}]},
},
)
conn.delete_item(TableName="test-streams", Key={"id": {"S": "entry1"}})