Skip to content

Commit

Permalink
Merge pull request #10353 from carlopi/fixpyformat
Browse files Browse the repository at this point in the history
test_all_types.py: Formatting according to black 24
  • Loading branch information
Mytherin authored Jan 26, 2024
2 parents 016ce8e + 4b38f30 commit bf9b0bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/pythonpkg/tests/fast/test_all_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,11 @@ def test_fetchall(self, cur_type):
(None,),
],
'array_of_structs': [([],), ([{'a': None, 'b': None}, {'a': 42, 'b': '🦆🦆🦆🦆🦆🦆'}, None],), (None,)],
'map': [({'key': [], 'value': []},), ({'key': ['key1', 'key2'], 'value': ['🦆🦆🦆🦆🦆🦆', 'goose']},), (None,)],
'map': [
({'key': [], 'value': []},),
({'key': ['key1', 'key2'], 'value': ['🦆🦆🦆🦆🦆🦆', 'goose']},),
(None,),
],
'time_tz': [(datetime.time(0, 0),), (datetime.time(23, 59, 59, 999999),), (None,)],
'interval': [
(datetime.timedelta(0),),
Expand Down

0 comments on commit bf9b0bf

Please sign in to comment.