attribute error fix
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s

This commit is contained in:
Corban-Lee Jones 2024-12-08 00:51:22 +00:00
parent d2d0b1a03e
commit ae07f1760a

View File

@ -34,7 +34,7 @@ class ConsoleCog(commands.Cog):
@tasks.loop(seconds=3)
async def listen_for_changes(self):
log.debug("listening for changes")
async for line in self.file_reader.read():
async for line in self.file_handler.read():
await self.process_console_line(line)
async def process_console_line(self, line: str):