File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 19
19
rev : v0.910
20
20
hooks :
21
21
- id : mypy
22
- - repo : https://github.com/ambv /black
23
- rev : 21.8b0
22
+ - repo : https://github.com/psf /black
23
+ rev : 22.3.0
24
24
hooks :
25
25
- id : black
26
26
name : Run black formatter
Original file line number Diff line number Diff line change @@ -250,7 +250,9 @@ def create_warehouse() -> Warehouse:
250
250
251
251
252
252
def create_scan (
253
- scan_yml : ScanYml , variables : dict = None , soda_server_client : SodaServerClient | None = None
253
+ scan_yml : ScanYml ,
254
+ variables : dict | None = None ,
255
+ soda_server_client : SodaServerClient | None = None ,
254
256
) -> Scan :
255
257
"""
256
258
Create a scan object.
@@ -443,7 +445,9 @@ def execute(
443
445
scan_yml = create_scan_yml (scan_definition )
444
446
df .createOrReplaceTempView (scan_yml .table_name )
445
447
446
- scan = create_scan (scan_yml , variables = variables , soda_server_client = soda_server_client )
448
+ scan = create_scan (
449
+ scan_yml , variables = variables , soda_server_client = soda_server_client
450
+ )
447
451
scan .execute ()
448
452
449
453
if as_frames :
You can’t perform that action at this time.
0 commit comments