mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Fixed mypy config.
This commit is contained in:
parent
ba0faeffd0
commit
e5a267ffbf
1 changed files with 2 additions and 15 deletions
|
@ -1,29 +1,16 @@
|
|||
import os
|
||||
from contextlib import contextmanager
|
||||
from typing import Iterator
|
||||
|
||||
from monkeytype.config import DefaultConfig
|
||||
|
||||
|
||||
class DpasteConfig(DefaultConfig):
|
||||
class MyConfig(DefaultConfig):
|
||||
@contextmanager
|
||||
def cli_context(self, command: str) -> Iterator[None]:
|
||||
"""
|
||||
Django Settings setup
|
||||
"""
|
||||
try:
|
||||
import dpaste.settings.local # isort: skip
|
||||
|
||||
settings = "dpaste.settings.local"
|
||||
except ImportError:
|
||||
settings = "dpaste.settings.base"
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", settings)
|
||||
|
||||
import django # isort: skip
|
||||
|
||||
django.setup()
|
||||
yield
|
||||
|
||||
|
||||
CONFIG = DpasteConfig()
|
||||
config = MyConfig()
|
||||
|
|
Loading…
Reference in a new issue