Move GamdlError to utils and update imports

This commit is contained in:
Rafael Moraes
2026-01-30 12:21:39 -03:00
parent b8ea1d0039
commit 5332e0e1c0
2 changed files with 5 additions and 2 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
class GamdlError(Exception):
pass
from gamdl.utils import GamdlError
class MediaFileExists(GamdlError):
+4
View File
@@ -95,3 +95,7 @@ class CustomStringFormatter(string.Formatter):
return fallback_value
return super().format_field(value, format_spec)
class GamdlError(Exception):
pass