fix __all__

This commit is contained in:
AF 2022-11-01 02:03:43 +00:00 committed by parrrate
parent 87cdf5f86b
commit b764c72d6d
Signed by: alisa
SSH Key Fingerprint: SHA256:vNY4pdIZvO1FYJKHROkdHLtvyopizvZVAEwg9AF6h04

View File

@ -8,7 +8,7 @@ from io import StringIO
from typing import Any, Optional, IO, Type, Hashable
__all__ = ('KVRequest', 'KVJson', 'DbConnection', 'DbFactory',)
__all__ = ('KVRequest', 'KVJson', 'DbConnection', 'DbFactory', 'Db', )
class Request: