Skip to content

Commit

Permalink
fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Sep 1, 2023
1 parent 8c165cb commit eeff664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cephfs_disk_usage/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async def dir_entry(self, path: str) -> DirEntry:

tasks = set()
for child in fullpath.iterdir():
tasks.add(tg.create_task(self._get_meta(child)))
tasks.add(asyncio.create_task(self._get_meta(child)))

ret = DirEntry.from_entry(await self._get_meta(fullpath))
start_time = time.time()
Expand Down

0 comments on commit eeff664

Please sign in to comment.