Skip to content

Commit

Permalink
Rename constants module to user_types since that's the only thing…
Browse files Browse the repository at this point in the history
… inside
  • Loading branch information
gentlecat committed Jul 14, 2017
1 parent 1c6d3f0 commit 5e45d7c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# USER TYPES
class UserType(object):

def __init__(self, label, karma, reviews_per_day, votes_per_day):
Expand Down
2 changes: 1 addition & 1 deletion critiquebrainz/db/user.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import date, timedelta
from critiquebrainz.data.mixins import AdminMixin
import critiquebrainz.db.users as db_users
from critiquebrainz.data.constants import user_types
from critiquebrainz.data.user_types import user_types


class User(AdminMixin):
Expand Down

0 comments on commit 5e45d7c

Please sign in to comment.