docs: fix GITEA_REPO format documentation #264

Merged
lmiranda merged 13 commits from fix/gitea-repo-format-docs into development 2026-01-28 18:45:25 +00:00
Showing only changes of commit ec7141a5aa - Show all commits

View File

@@ -330,7 +330,7 @@ class PandasTools:
return {'error': f'DataFrame not found: {data_ref}'}
try:
filtered = df.query(condition)
filtered = df.query(condition).reset_index(drop=True)
result_name = name or f"{data_ref}_filtered"
return self._check_and_store(
filtered,