aboutsummaryrefslogtreecommitdiff
path: root/discord/iterators.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/iterators.py')
-rw-r--r--discord/iterators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/iterators.py b/discord/iterators.py
index 51431651..a9575d49 100644
--- a/discord/iterators.py
+++ b/discord/iterators.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2020 Rapptz
+Copyright (c) 2015-present Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@@ -101,7 +101,7 @@ class _ChunkedAsyncIterator(_AsyncIterator):
def __init__(self, iterator, max_size):
self.iterator = iterator
self.max_size = max_size
-
+
async def next(self):
ret = []
n = 0