We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f2974 commit 59bfb35Copy full SHA for 59bfb35
src/PowerPlatform/Dataverse/data/_odata.py
@@ -1458,10 +1458,7 @@ def _list_tables(
1458
combined_filter = base_filter
1459
params: Dict[str, str] = {"$filter": combined_filter}
1460
if select is not None and isinstance(select, str):
1461
- raise TypeError(
1462
- "select must be a list of strings, not a single str; "
1463
- "did you mean ['" + select + "'] instead of '" + select + "'?"
1464
- )
+ raise TypeError("select must be a list of property names, not a bare string")
1465
if select:
1466
params["$select"] = ",".join(select)
1467
r = self._request("get", url, params=params)
0 commit comments