GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( cc823b...3d112a )
by PyJobs
9s
created

pyjobsweb.websetup.setup_app()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4285
cc 1
1
# -*- coding: utf-8 -*-
2
"""Setup the pyjobsweb application"""
3
4
import logging
5
6
from pyjobsweb.config.environment import load_environment
7
8
__all__ = ['setup_app']
9
10
log = logging.getLogger(__name__)
11
12
from .schema import setup_schema
13
from .bootstrap import bootstrap
14
15
16
def setup_app(command, conf, vars):
17
    """Place any commands to setup pyjobsweb here"""
18
    load_environment(conf.global_conf, conf.local_conf)
19
    setup_schema(command, conf, vars)
20
    bootstrap(command, conf, vars)
21