We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3b33a3 commit 683e657Copy full SHA for 683e657
2 files changed
ui/sdk/src/hamilton_sdk/driver.py
@@ -58,7 +58,9 @@ def _hash_module(
58
)
59
60
def safe_getmembers(module):
61
- """Need this because some modules are lazily loaded and we can't get the members."""
+ """Need this because some modules are lazily loaded and we can't get the members.
62
+ e.g. ibis.
63
+ """
64
try:
65
return inspect.getmembers(module)
66
except Exception as e:
ui/sdk/src/hamilton_sdk/tracking/ibis_stats.py
@@ -30,7 +30,7 @@ def base_data_type_mapping(data_type: core.DataType) -> str:
30
31
32
base_schema = {
33
- # we can't get all of these about a pyspark dataframe
+ # we can't get all of these about an ibis dataframe
34
"base_data_type": None,
35
# 'count': 0,
36
"data_type": None,
0 commit comments