0.10.1 fix missing imports

This commit is contained in:
Yusur 2025-11-23 21:52:01 +01:00
parent 5c9a6f2c7e
commit 7e6a46c654
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.10.1 and 0.7.10
+ `peewee`: fix missing imports
## 0.10.0 ## 0.10.0
+ `peewee`: add `SnowflakeField` class + `peewee`: add `SnowflakeField` class

View file

@ -37,7 +37,7 @@ from .redact import redact_url_password
from .http import WantsContentType from .http import WantsContentType
from .color import chalk, WebColor from .color import chalk, WebColor
__version__ = "0.10.0" __version__ = "0.10.1"
__all__ = ( __all__ = (
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue', 'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',

View file

@ -18,7 +18,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
from contextvars import ContextVar from contextvars import ContextVar
from typing import Iterable from typing import Iterable
from playhouse.shortcuts import ReconnectMixin from playhouse.shortcuts import ReconnectMixin
from peewee import BigIntegerField, CharField, Database, MySQLDatabase, _ConnectionState from peewee import BigIntegerField, CharField, Database, Field, MySQLDatabase, _ConnectionState
import re import re
from suou.iding import Siq from suou.iding import Siq