forked from TobikoData/sqlmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: replace autoflake+black+isort with ruff (TobikoData#2584)
* Chore: replace autoflake+black+isort with ruff * Fixup * Fixup * Explicitly re-export names in init files * Cleanup * Rename PyDataFrame to PySparkDataFrame
- Loading branch information
1 parent
e5920a9
commit e7538c5
Showing
78 changed files
with
353 additions
and
326 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
from sqlmesh.core.config.categorizer import AutoCategorizationMode, CategorizerConfig | ||
from sqlmesh.core.config.common import EnvironmentSuffixTarget | ||
from sqlmesh.core.config.categorizer import ( | ||
AutoCategorizationMode as AutoCategorizationMode, | ||
CategorizerConfig as CategorizerConfig, | ||
) | ||
from sqlmesh.core.config.common import EnvironmentSuffixTarget as EnvironmentSuffixTarget | ||
from sqlmesh.core.config.connection import ( | ||
BigQueryConnectionConfig, | ||
ConnectionConfig, | ||
DatabricksConnectionConfig, | ||
DuckDBConnectionConfig, | ||
GCPPostgresConnectionConfig, | ||
MotherDuckConnectionConfig, | ||
MSSQLConnectionConfig, | ||
MySQLConnectionConfig, | ||
PostgresConnectionConfig, | ||
RedshiftConnectionConfig, | ||
SnowflakeConnectionConfig, | ||
SparkConnectionConfig, | ||
parse_connection_config, | ||
BigQueryConnectionConfig as BigQueryConnectionConfig, | ||
ConnectionConfig as ConnectionConfig, | ||
DatabricksConnectionConfig as DatabricksConnectionConfig, | ||
DuckDBConnectionConfig as DuckDBConnectionConfig, | ||
GCPPostgresConnectionConfig as GCPPostgresConnectionConfig, | ||
MotherDuckConnectionConfig as MotherDuckConnectionConfig, | ||
MSSQLConnectionConfig as MSSQLConnectionConfig, | ||
MySQLConnectionConfig as MySQLConnectionConfig, | ||
PostgresConnectionConfig as PostgresConnectionConfig, | ||
RedshiftConnectionConfig as RedshiftConnectionConfig, | ||
SnowflakeConnectionConfig as SnowflakeConnectionConfig, | ||
SparkConnectionConfig as SparkConnectionConfig, | ||
parse_connection_config as parse_connection_config, | ||
) | ||
from sqlmesh.core.config.gateway import GatewayConfig | ||
from sqlmesh.core.config.gateway import GatewayConfig as GatewayConfig | ||
from sqlmesh.core.config.loader import ( | ||
load_config_from_paths, | ||
load_config_from_yaml, | ||
load_configs, | ||
load_config_from_paths as load_config_from_paths, | ||
load_config_from_yaml as load_config_from_yaml, | ||
load_configs as load_configs, | ||
) | ||
from sqlmesh.core.config.migration import MigrationConfig | ||
from sqlmesh.core.config.model import ModelDefaultsConfig | ||
from sqlmesh.core.config.plan import PlanConfig | ||
from sqlmesh.core.config.root import Config | ||
from sqlmesh.core.config.run import RunConfig | ||
from sqlmesh.core.config.migration import MigrationConfig as MigrationConfig | ||
from sqlmesh.core.config.model import ModelDefaultsConfig as ModelDefaultsConfig | ||
from sqlmesh.core.config.plan import PlanConfig as PlanConfig | ||
from sqlmesh.core.config.root import Config as Config | ||
from sqlmesh.core.config.run import RunConfig as RunConfig | ||
from sqlmesh.core.config.scheduler import ( | ||
AirflowSchedulerConfig, | ||
BuiltInSchedulerConfig, | ||
CloudComposerSchedulerConfig, | ||
MWAASchedulerConfig, | ||
AirflowSchedulerConfig as AirflowSchedulerConfig, | ||
BuiltInSchedulerConfig as BuiltInSchedulerConfig, | ||
CloudComposerSchedulerConfig as CloudComposerSchedulerConfig, | ||
MWAASchedulerConfig as MWAASchedulerConfig, | ||
) |
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.