Skip to content

Commit b30eead

Browse files
committed
correct utils.__all__
1 parent 746dfb2 commit b30eead

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

devtools/utils.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
import os
22
import sys
33

4-
__all__ = 'isatty', 'env_true', 'env_bool', 'use_highlight', 'is_literal', 'LaxMapping', 'DataClassType'
4+
__all__ = (
5+
'isatty',
6+
'env_true',
7+
'env_bool',
8+
'use_highlight',
9+
'is_literal',
10+
'LaxMapping',
11+
'DataClassType',
12+
'SQLAlchemyClassType',
13+
)
514

615
MYPY = False
716
if MYPY:

0 commit comments

Comments
 (0)