Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
async is a keyword, make submodules private
Browse files Browse the repository at this point in the history
  • Loading branch information
RazerM committed Jan 11, 2018
1 parent d9b77c6 commit da78a45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ratelimiter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@

# Async support is provided only on Python 3.5+
if sys.version_info >= (3, 5):
from .async import AsyncRateLimiter as RateLimiter
from ._async import AsyncRateLimiter as RateLimiter
else:
from .sync import RateLimiter
from ._sync import RateLimiter

__all__ = [
"RateLimiter",
Expand Down
2 changes: 1 addition & 1 deletion ratelimiter/async.py → ratelimiter/_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import time
import asyncio

from .sync import RateLimiter
from ._sync import RateLimiter


class AsyncRateLimiter(RateLimiter):
Expand Down
File renamed without changes.

0 comments on commit da78a45

Please sign in to comment.