Skip to content

Commit

Permalink
Fix module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsils committed Jan 3, 2023
1 parent 0bb29b4 commit e500797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions asyncz/stores/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
from .base import BaseStore
from .memory import MemoryStore
from .mongo import MongoDBStore
from .redis import RedisStore

__all__ = ["BaseStore", "MemoryStore", "MongoDBStore", "RedisStore"]
3 changes: 2 additions & 1 deletion docs_src/schedulers/method1.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import pytz
from asyncz.executors import AsyncIOExecutor, ThreadPoolExecutor
from asyncz.schedulers.asyncio import AsyncIOScheduler
from asyncz.stores import MongoDBStore, RedisStore
from asyncz.stores.mongo import MongoDBStore
from asyncz.stores.redis import RedisStore

# Define the stores
# Override the default MemoryStore to become RedisStore where the db is 0
Expand Down

0 comments on commit e500797

Please sign in to comment.