Skip to content

Commit

Permalink
fix: remove unused default_config_file_name class attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Zane Clark committed Oct 31, 2024
1 parent c724850 commit addf642
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions schemachange/config/BaseConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

@dataclasses.dataclass(frozen=True)
class BaseConfig(ABC):
default_config_file_name: ClassVar[str] = "schemachange-config.yml"

subcommand: Literal["deploy", "render"]
config_version: int | None = None
config_file_path: Path | None = None
Expand Down
1 change: 0 additions & 1 deletion tests/test_cli_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ def test_cli_given__schemachange_version_change_updated_in_setup_config_file():


def test_cli_given__constants_exist():
assert BaseConfig.default_config_file_name == "schemachange-config.yml"
assert ChangeHistoryTable._default_database_name == "METADATA"
assert ChangeHistoryTable._default_schema_name == "SCHEMACHANGE"
assert ChangeHistoryTable._default_table_name == "CHANGE_HISTORY"
Expand Down

0 comments on commit addf642

Please sign in to comment.