Fix comment typo

This commit is contained in:
55448286+taizan-hokuto@users.noreply.github.com
2019-11-03 18:01:00 +09:00
parent 737095e7fb
commit 275e1a7aa8
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
import asyncio
class Buffer(asyncio.Queue):
'''
チャットデータを格納するバッファの役割を持つLIFOキュー
チャットデータを格納するバッファの役割を持つFIFOキュー
Parameter
---------

View File

@@ -1,4 +1,4 @@
import aiohttp, asyncio, async_timeout
import aiohttp, asyncio
import datetime
import json
import random

View File

@@ -3,7 +3,7 @@ import queue
class Buffer(queue.Queue):
'''
チャットデータを格納するバッファの役割を持つLIFOキュー
チャットデータを格納するバッファの役割を持つFIFOキュー
Parameter
---------