Skip to content

Commit

Permalink
Fix missing await for the dependency process
Browse files Browse the repository at this point in the history
  • Loading branch information
LobaDK committed Mar 30, 2024
1 parent 603d180 commit 8a632c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/Entanglement.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ async def update(self, ctx: commands.Context):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
proc.wait()
await proc.wait()
await ctx.message.add_reaction("👍")
reboot = True
except Exception as e:
Expand Down

0 comments on commit 8a632c7

Please sign in to comment.