mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 22:10:16 +02:00
Pycharm refactor failed me.
This commit is contained in:
parent
3f33485ca9
commit
cfad4fa8a6
@ -4,7 +4,7 @@ from esi.errors import TokenExpiredError, TokenInvalidError
|
|||||||
from esi.models import Token
|
from esi.models import Token
|
||||||
|
|
||||||
from allianceauth.authentication.models import CharacterOwnership
|
from allianceauth.authentication.models import CharacterOwnership
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.corputils import CorpStats
|
from allianceauth.corputils import CorpStats
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import logging
|
import logging
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from .models import EveAllianceInfo
|
from .models import EveAllianceInfo
|
||||||
from .models import EveCharacter
|
from .models import EveCharacter
|
||||||
from .models import EveCorporationInfo
|
from .models import EveCorporationInfo
|
||||||
|
@ -5,7 +5,7 @@ from django.contrib.auth.models import User
|
|||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from .manager import DiscordOAuthManager, DiscordApiBackoff
|
from .manager import DiscordOAuthManager, DiscordApiBackoff
|
||||||
from .models import DiscordUser
|
from .models import DiscordUser
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
from .manager import DiscourseManager
|
from .manager import DiscourseManager
|
||||||
from .models import DiscourseUser
|
from .models import DiscourseUser
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from .manager import MumbleManager
|
from .manager import MumbleManager
|
||||||
from .models import MumbleUser
|
from .models import MumbleUser
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ from django.contrib.auth.models import User
|
|||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.services.modules.openfire.manager import OpenfireManager
|
from allianceauth.services.modules.openfire.manager import OpenfireManager
|
||||||
from .models import OpenfireUser
|
from .models import OpenfireUser
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
from .manager import Phpbb3Manager
|
from .manager import Phpbb3Manager
|
||||||
from .models import Phpbb3User
|
from .models import Phpbb3User
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
from .manager import SeatManager
|
from .manager import SeatManager
|
||||||
from .models import SeatUser
|
from .models import SeatUser
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
from .manager import SmfManager
|
from .manager import SmfManager
|
||||||
from .models import SmfUser
|
from .models import SmfUser
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ObjectDoesNotExist
|
from django.core.exceptions import ObjectDoesNotExist
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from allianceauth.notifications import notify
|
from allianceauth.notifications import notify
|
||||||
from .manager import Teamspeak3Manager
|
from .manager import Teamspeak3Manager
|
||||||
from .models import AuthTS, TSgroup, UserTSgroup, Teamspeak3User
|
from .models import AuthTS, TSgroup, UserTSgroup, Teamspeak3User
|
||||||
|
@ -2,7 +2,7 @@ import logging
|
|||||||
|
|
||||||
import redis
|
import redis
|
||||||
|
|
||||||
from allianceauth.celeryapp import app
|
from allianceauth.celery import app
|
||||||
from .hooks import ServicesHook
|
from .hooks import ServicesHook
|
||||||
|
|
||||||
REDIS_CLIENT = redis.Redis()
|
REDIS_CLIENT = redis.Redis()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user