Skip to content

Commit

Permalink
fix missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
fdev31 committed Nov 29, 2023
1 parent ef69886 commit 3cf8d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyprland/plugins/scratchpads.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ async def ensure_alive(self, uid):
item = self.scratches.get(name=uid)

if item.conf.get("pwa_hack"):
return self._ensure_alive_pwa(item)
return await self._ensure_alive_pwa(item)

if not await item.isAlive():
await self._start_scratch(item)
Expand Down

0 comments on commit 3cf8d0b

Please sign in to comment.