Skip to content

Commit

Permalink
Fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyGuard committed Mar 17, 2024
1 parent 832aa22 commit ebba945
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions tests/base/run_migration_test_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,16 @@

class CompareAndRunTestCase(ABC):
@abstractmethod
def get_database_schema(self) -> MetaData:
...
def get_database_schema(self) -> MetaData: ...

@abstractmethod
def get_target_schema(self) -> MetaData:
...
def get_target_schema(self) -> MetaData: ...

@abstractmethod
def get_expected_upgrade(self) -> str:
...
def get_expected_upgrade(self) -> str: ...

@abstractmethod
def get_expected_downgrade(self) -> str:
...
def get_expected_downgrade(self) -> str: ...

def test_run(self, connection: "Connection"):
database_schema = self.get_database_schema()
Expand Down

0 comments on commit ebba945

Please sign in to comment.