Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit b4073db

Browse files
committed
Bugfix for String_UUID
1 parent e1551a1 commit b4073db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqeleton/abcs/database_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ class Native_UUID(ColType_UUID):
9797
pass
9898

9999

100-
class String_UUID(StringType, ColType_UUID):
100+
class String_UUID(ColType_UUID, StringType):
101101
pass
102102

103103

104-
class String_Alphanum(StringType, ColType_Alphanum):
104+
class String_Alphanum(ColType_Alphanum, StringType):
105105
@staticmethod
106106
def test_value(value: str) -> bool:
107107
try:

0 commit comments

Comments
 (0)