We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22832e commit 8838bb6Copy full SHA for 8838bb6
1 file changed
src/PowerPlatform/Dataverse/operations/dataframe.py
@@ -175,9 +175,7 @@ def create(
175
ids = self._client.records.create(table, record_list)
176
177
if len(ids) != len(records):
178
- raise ValueError(
179
- f"Server returned {len(ids)} IDs for {len(records)} input rows"
180
- )
+ raise ValueError(f"Server returned {len(ids)} IDs for {len(records)} input rows")
181
182
return pd.Series(ids, index=records.index)
183
0 commit comments