diff --git a/pytchat/core_async/buffer.py b/pytchat/core_async/buffer.py index 7510f19..5abdc7a 100644 --- a/pytchat/core_async/buffer.py +++ b/pytchat/core_async/buffer.py @@ -2,7 +2,7 @@ import asyncio class Buffer(asyncio.Queue): ''' - チャットデータを格納するバッファの役割を持つLIFOキュー + チャットデータを格納するバッファの役割を持つFIFOキュー Parameter --------- diff --git a/pytchat/core_async/livechat.py b/pytchat/core_async/livechat.py index 93d9fcc..9388442 100644 --- a/pytchat/core_async/livechat.py +++ b/pytchat/core_async/livechat.py @@ -1,4 +1,4 @@ -import aiohttp, asyncio, async_timeout +import aiohttp, asyncio import datetime import json import random diff --git a/pytchat/core_multithread/buffer.py b/pytchat/core_multithread/buffer.py index 1178839..c1ef2fe 100644 --- a/pytchat/core_multithread/buffer.py +++ b/pytchat/core_multithread/buffer.py @@ -3,7 +3,7 @@ import queue class Buffer(queue.Queue): ''' - チャットデータを格納するバッファの役割を持つLIFOキュー + チャットデータを格納するバッファの役割を持つFIFOキュー Parameter ---------