Skip to content

Commit

Permalink
removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sohaibfarooqi committed Jan 21, 2019
1 parent 9d99395 commit b0168e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion consumer/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from celery import Celery
from celery.utils.log import get_task_logger
from marshmallow import ValidationError
from sqlalchemy import create_engine, exc, func
from sqlalchemy import create_engine, exc
from sqlalchemy.orm import sessionmaker

from .config import CeleryConfig
Expand Down
3 changes: 1 addition & 2 deletions consumer/model.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import os

from sqlalchemy import Column, DateTime, Integer, String, UniqueConstraint, create_engine, func
from sqlalchemy import Column, DateTime, Integer, String, UniqueConstraint, func
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker

Base = declarative_base()

Expand Down

0 comments on commit b0168e1

Please sign in to comment.