File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - id : trailing-whitespace
1919
2020- repo : https://github.com/astral-sh/ruff-pre-commit
21- rev : v0.7.2
21+ rev : v0.9.6
2222 hooks :
2323 - id : ruff
2424 args : [--fix]
Original file line number Diff line number Diff line change @@ -365,16 +365,15 @@ def is_property_selected( # noqa: C901
365365 if inclusion == "unsupported" :
366366 if selected is True :
367367 LOGGER .debug (
368- "Property '%s' was selected but is not supported. " " Ignoring selected==True input." ,
368+ "Property '%s' was selected but is not supported. Ignoring selected==True input." ,
369369 ":" .join (breadcrumb ),
370370 )
371371 return False
372372
373373 if inclusion == "automatic" :
374374 if selected is False :
375375 LOGGER .debug (
376- "Property '%s' was deselected while also set "
377- "for automatic inclusion. Ignoring selected==False input." ,
376+ "Property '%s' was deselected while also set for automatic inclusion. Ignoring selected==False input." ,
378377 ":" .join (breadcrumb ),
379378 )
380379 return True
@@ -386,7 +385,7 @@ def is_property_selected( # noqa: C901
386385 return selected_by_default
387386
388387 LOGGER .debug (
389- "Selection metadata omitted for '%s':'%s'. " " Using parent value of selected=%s." ,
388+ "Selection metadata omitted for '%s':'%s'. Using parent value of selected=%s." ,
390389 stream_name ,
391390 breadcrumb ,
392391 parent_value ,
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def raise_for_status(resp):
149149 that this error is ephemeral and resolved after retries.
150150 """
151151 if resp .status_code != 200 :
152- err_msg = f"{ resp .status_code } Client Error: { resp .reason } " f" for url: { resp .url } "
152+ err_msg = f"{ resp .status_code } Client Error: { resp .reason } for url: { resp .url } "
153153 LOGGER .warning (err_msg )
154154
155155 if resp .status_code == 406 and "CustomNotAcceptable" in resp .reason :
You can’t perform that action at this time.
0 commit comments