|
4 | 4 | def test(): |
5 | 5 | import sqlalchemy_mate.api as sam |
6 | 6 |
|
| 7 | + # fmt: off |
7 | 8 | _ = sam.selecting.count_row |
8 | 9 | _ = sam.selecting.by_pk |
9 | 10 | _ = sam.selecting.select_all |
@@ -42,28 +43,21 @@ def test(): |
42 | 43 | _ = sam.patterns.large_binary_column.aws_s3 |
43 | 44 | _ = sam.patterns.large_binary_column.aws_s3.PutS3BackedColumnResult |
44 | 45 | _ = sam.patterns.large_binary_column.aws_s3.put_s3backed_column |
45 | | - _ = ( |
46 | | - sam.patterns.large_binary_column.aws_s3.clean_up_created_s3_object_when_create_or_update_row_failed |
47 | | - ) |
48 | | - _ = ( |
49 | | - sam.patterns.large_binary_column.aws_s3.clean_up_old_s3_object_when_update_row_succeeded |
50 | | - ) |
| 46 | + _ = sam.patterns.large_binary_column.aws_s3.clean_up_created_s3_object_when_create_or_update_row_failed |
| 47 | + _ = sam.patterns.large_binary_column.aws_s3.clean_up_old_s3_object_when_update_row_succeeded |
51 | 48 | _ = sam.patterns.large_binary_column.aws_s3.PutS3ApiCall |
52 | 49 | _ = sam.patterns.large_binary_column.aws_s3.PutS3Result |
53 | 50 | _ = sam.patterns.large_binary_column.aws_s3.put_s3 |
54 | 51 |
|
55 | 52 | _ = sam.patterns.large_binary_column.local |
56 | 53 | _ = sam.patterns.large_binary_column.local.WriteFileBackedColumnResult |
57 | 54 | _ = sam.patterns.large_binary_column.local.write_file_backed_column |
58 | | - _ = ( |
59 | | - sam.patterns.large_binary_column.local.clean_up_new_file_when_create_or_update_row_failed |
60 | | - ) |
61 | | - _ = ( |
62 | | - sam.patterns.large_binary_column.local.clean_up_old_file_when_update_row_succeeded |
63 | | - ) |
| 55 | + _ = sam.patterns.large_binary_column.local.clean_up_new_file_when_create_or_update_row_failed |
| 56 | + _ = sam.patterns.large_binary_column.local.clean_up_old_file_when_update_row_succeeded |
64 | 57 | _ = sam.patterns.large_binary_column.local.WriteFileApiCall |
65 | 58 | _ = sam.patterns.large_binary_column.local.WriteFileResult |
66 | 59 | _ = sam.patterns.large_binary_column.local.write_file |
| 60 | + # fmt: on |
67 | 61 |
|
68 | 62 |
|
69 | 63 | if __name__ == "__main__": |
|
0 commit comments