From 275e1a7aa8bf48a6757ba431db59f92b121e4202 Mon Sep 17 00:00:00 2001 From: "55448286+taizan-hokuto@users.noreply.github.com" Date: Sun, 3 Nov 2019 18:01:00 +0900 Subject: [PATCH] Fix comment typo --- pytchat/core_async/buffer.py | 2 +- pytchat/core_async/livechat.py | 2 +- pytchat/core_multithread/buffer.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ---------