Skip to content

Commit 0fbd742

Browse files
authored
Merge pull request #131 from CaviraOSS/copilot/fix-syntax-errors-in-wheel
Fix unterminated f-string in google_slides.py
2 parents 5df446e + 02dae84 commit 0fbd742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/openmemory-py/src/openmemory/connectors/google_slides.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async def list_items(self, presentation_id: str = None, **filters) -> List[Dict]
7474
slides = []
7575
for i, slide in enumerate(pres.get("slides", [])):
7676
slides.append({
77-
"id": f"{presentation_id},
77+
"id": f"{presentation_id}",
7878
"name": f"Slide {i + 1}",
7979
"type": "slide",
8080
"index": i,

0 commit comments

Comments
 (0)