opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
alembic
/
util
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
__init__.py
1.43 KB
Rename
Delete
compat.py
2.57 KB
Rename
Delete
editor.py
2.49 KB
Rename
Delete
exc.py
564 bytes
Rename
Delete
langhelpers.py
9.79 KB
Rename
Delete
messaging.py
3.09 KB
Rename
Delete
pyfiles.py
3.41 KB
Rename
Delete
sqla_compat.py
14.44 KB
Rename
Delete
from __future__ import annotations from typing import Any from typing import List from typing import Tuple from typing import TYPE_CHECKING if TYPE_CHECKING: from alembic.autogenerate import RevisionContext class CommandError(Exception): pass class AutogenerateDiffsDetected(CommandError): def __init__( self, message: str, revision_context: RevisionContext, diffs: List[Tuple[Any, ...]], ) -> None: super().__init__(message) self.revision_context = revision_context self.diffs = diffs
Save