Skip to content

Commit

Permalink
Fixing CI static checks due to #45278 (#45280)
Browse files Browse the repository at this point in the history
  • Loading branch information
amoghrajesh authored Dec 30, 2024
1 parent 1283cc3 commit 03c2494
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions dev/breeze/src/airflow_breeze/utils/selective_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,11 +1203,7 @@ def test_groups(self):

@cached_property
def docker_cache(self) -> str:
return (
"disabled"
if DISABLE_IMAGE_CACHE_LABEL in self._pr_labels
else "registry"
)
return "disabled" if DISABLE_IMAGE_CACHE_LABEL in self._pr_labels else "registry"

@cached_property
def debug_resources(self) -> bool:
Expand Down

0 comments on commit 03c2494

Please sign in to comment.