We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1c047f commit b9d60b9Copy full SHA for b9d60b9
powerapi/database/file_db.py
@@ -144,4 +144,5 @@ def save_many(self, reports: List[Report]):
144
145
:param reports: Batch of data.
146
"""
147
- raise DBError("FileDB do not support save_many method")
+ for report in reports:
148
+ self.save(report)
0 commit comments