We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e299194 commit 7968fb9Copy full SHA for 7968fb9
bot/cogs/utilities.py
@@ -82,7 +82,7 @@ async def about(self, ctx: RoboContext) -> None:
82
# For Kumiko, it's done differently
83
# R. Danny's way of doing it is probably close enough anyways
84
memory_usage = self.process.memory_full_info().uss / 1024**2
85
- cpu_usage = self.process.cpu_percent() / psutil.cpu_count()
+ cpu_usage = self.process.cpu_percent() / psutil.cpu_count() # type: ignore
86
bot_user: discord.ClientUser = self.bot.user # type: ignore
87
88
revisions = "See [GitHub](https://github.com/transprogrammer/rodhaj)"
0 commit comments