-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(dev-deps): replace flake8 et al with
ruff
and fix lints
Replace flake8 and friends with `ruff`. BREAKING CHANGE: Expression types have been removed from `ibis.expr.api`. Use `import ibis.expr.types as ir` to access these types.
- Loading branch information
Showing
64 changed files
with
263 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from ibis.backends.dask.execution.aggregations import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.arrays import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.decimal import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.generic import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.indexing import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.join import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.maps import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.numeric import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.reductions import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.selection import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.strings import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.structs import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.temporal import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.window import * # noqa: F401,F403 | ||
from ibis.backends.dask.execution.aggregations import * # noqa: F403 | ||
from ibis.backends.dask.execution.arrays import * # noqa: F403 | ||
from ibis.backends.dask.execution.decimal import * # noqa: F403 | ||
from ibis.backends.dask.execution.generic import * # noqa: F403 | ||
from ibis.backends.dask.execution.indexing import * # noqa: F403 | ||
from ibis.backends.dask.execution.join import * # noqa: F403 | ||
from ibis.backends.dask.execution.maps import * # noqa: F403 | ||
from ibis.backends.dask.execution.numeric import * # noqa: F403 | ||
from ibis.backends.dask.execution.reductions import * # noqa: F403 | ||
from ibis.backends.dask.execution.selection import * # noqa: F403 | ||
from ibis.backends.dask.execution.strings import * # noqa: F403 | ||
from ibis.backends.dask.execution.structs import * # noqa: F403 | ||
from ibis.backends.dask.execution.temporal import * # noqa: F403 | ||
from ibis.backends.dask.execution.window import * # noqa: F403 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.