Skip to content

Commit

Permalink
Fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hbcarlos committed Oct 10, 2023
1 parent e876a80 commit 999701d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ypy_websocket/stores/file_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def list(self) -> AsyncIterator[str]: # type: ignore[override]
await self._initialized.wait()

async for child in anyio.Path(self._store_path).glob("**/*.y"):
yield str(child.relative_to(self._store_path).with_suffix(""))
yield child.relative_to(self._store_path).with_suffix("").as_posix()

async def get(self, path: str, updates: bool = False) -> dict | None:
"""
Expand Down

0 comments on commit 999701d

Please sign in to comment.