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 74d2453 commit 81616fcCopy full SHA for 81616fc
pyiceberg/expressions/__init__.py
@@ -46,11 +46,6 @@
46
from pyiceberg.types import DoubleType, FloatType, NestedField
47
from pyiceberg.utils.singleton import Singleton
48
49
-try:
50
- from pydantic import ConfigDict
51
-except ImportError:
52
- ConfigDict = dict
53
-
54
55
def _to_unbound_term(term: Union[str, UnboundTerm[Any]]) -> UnboundTerm[Any]:
56
return Reference(term) if isinstance(term, str) else term
0 commit comments