We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e3eb2 commit dbdeb12Copy full SHA for dbdeb12
1 file changed
src/PowerPlatform/Dataverse/data/_odata.py
@@ -208,9 +208,7 @@ def __init__(
208
)
209
ctx = self.config.operation_context
210
if ctx and any(c in ctx for c in "\r\n\x00"):
211
- raise ValueError(
212
- "operation_context must not contain CR, LF, or NUL characters."
213
- )
+ raise ValueError("operation_context must not contain CR, LF, or NUL characters.")
214
self._operation_context = ctx
215
self._logical_to_entityset_cache: dict[str, str] = {}
216
# Cache: normalized table_schema_name (lowercase) -> primary id attribute (e.g. accountid)
0 commit comments