chore: set up ruff as a new linter/formatter (#28158)

This commit is contained in:
Maxime Beauchemin
2024-04-24 17:19:53 -07:00
committed by GitHub
parent e8a678b75a
commit 2d63722150
579 changed files with 2508 additions and 2542 deletions

View File

@@ -132,17 +132,13 @@ class TemporaryCacheRestApi(BaseSupersetApi, ABC):
return self.response(404, message=str(ex))
@abstractmethod
def get_create_command(self) -> Any:
...
def get_create_command(self) -> Any: ...
@abstractmethod
def get_update_command(self) -> Any:
...
def get_update_command(self) -> Any: ...
@abstractmethod
def get_get_command(self) -> Any:
...
def get_get_command(self) -> Any: ...
@abstractmethod
def get_delete_command(self) -> Any:
...
def get_delete_command(self) -> Any: ...