Skip to content
Snippets Groups Projects
Commit ec2f3a60 authored by Sebastian Lobinger's avatar Sebastian Lobinger
Browse files

update import statements in smas_classes/sams_hub.py to follow PEP-08

parent 45419539
Branches
Tags
1 merge request!23Resolve "_flaskApp.secret_key generieren"
Pipeline #
from flask import Flask, request, session
from .exceptions import (
ManifestDefaultLanguageMissing
, DefaultLanguageDictMissing
, AppNotExist
, FunctionNotExists
)
import sys
import os
from typing import Dict, List
from importlib import import_module
#from .exceptions import HubDirNotExist, FunctionNotExists
#from importlib import import_module
from flask import Flask, request, session
from .sams_app import SAMSApp
from .exceptions import FunctionNotExists
from optparse import Values
import sys
from .exceptions import (
ManifestDefaultLanguageMissing,
DefaultLanguageDictMissing,
AppNotExist,
FunctionNotExists
)
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment