We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e729ce1 commit 8d2c2ddCopy full SHA for 8d2c2dd
code_generation/mini_lambda_methods_generation.py
@@ -1,6 +1,9 @@
1
from inspect import isclass
2
from sys import getsizeof
3
-from typing import Tuple, Set, Optional, Any, List
+try:
4
+ from typing import Tuple, Set, Optional, Any, List
5
+except ImportError:
6
+ pass
7
8
import os
9
import math
0 commit comments