Skip to content

Commit

Permalink
Lint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Sep 3, 2012
1 parent 8c1ede6 commit 0c83e83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 2 additions & 3 deletions raven/utils/serializer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
:license: BSD, see LICENSE for more details.
"""


from raven.utils.serializer.base import Serializer
from raven.utils.serializer.manager import register, transform
from raven.utils.serializer.base import *
from raven.utils.serializer.manager import *
2 changes: 2 additions & 0 deletions raven/utils/serializer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
from types import ClassType, TypeType
from uuid import UUID

__all__ = ('Serializer',)


def has_sentry_metadata(value):
try:
Expand Down
3 changes: 2 additions & 1 deletion raven/utils/serializer/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
:copyright: (c) 2010 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

import logging

__all__ = ('register', 'transform')

logger = logging.getLogger('sentry.errors.serializer')


Expand Down

0 comments on commit 0c83e83

Please sign in to comment.