Skip to content

Commit 7d99366

Browse files
author
Sylvain MARIE
committed
Fixed dependency issue again
1 parent cceb28c commit 7d99366

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mini_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
]
1818

1919
# for these two ones we can, there is a `__all__` inside
20-
from mini_lambda.vars import s, b, x, y, i, j, n, l, d, f
20+
from mini_lambda.vars import *
2121
from mini_lambda.vars import __all__ as vall
2222

2323
from mini_lambda.generated_magic_replacements import *

mini_lambda/vars/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# from mini_lambda.pandas_ import df
66

77
__all__ = [
8-
'base', 'numpy_', 'pandas_',
8+
'base', # 'numpy_', 'pandas_',
99
's', 'b', 'x', 'y', 'i', 'j', 'n', 'l', 'd', 'f'
1010
]

0 commit comments

Comments
 (0)