Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sams-classes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
coding-at-fu
sams-classes
Merge requests
!23
Resolve "_flaskApp.secret_key generieren"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "_flaskApp.secret_key generieren"
36-_flaskapp-secret_key-generieren
into
master
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Resolve "_flaskApp.secret_key generieren"
slobinger
requested to merge
36-_flaskapp-secret_key-generieren
into
master
Oct 5, 2017
Overview
0
Commits
2
Pipelines
3
Changes
1
Closes
#36 (closed)
Edited
Oct 5, 2017
by
slobinger
0
0
Merge request reports
Viewing commit
ec2f3a60
Prev
Next
Show latest version
1 file
+
11
−
12
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ec2f3a60
update import statements in smas_classes/sams_hub.py to follow PEP-08
· ec2f3a60
Sebastian Lobinger
authored
Oct 5, 2017
sams_classes/sams_hub.py
+
11
−
12
View file @ ec2f3a60
Edit in single-file editor
Open in Web IDE
Show full file
from
flask
import
Flask
,
request
,
session
import
sys
from
.exceptions
import
(
import
os
ManifestDefaultLanguageMissing
,
DefaultLanguageDictMissing
,
AppNotExist
,
FunctionNotExists
)
from
typing
import
Dict
,
List
from
typing
import
Dict
,
List
from
importlib
import
import_module
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
.sams_app
import
SAMSApp
from
.exceptions
import
FunctionNotExists
from
.exceptions
import
(
from
optparse
import
Values
ManifestDefaultLanguageMissing
,
import
sys
DefaultLanguageDictMissing
,
AppNotExist
,
FunctionNotExists
)
def
eprint
(
*
args
,
**
kwargs
):
def
eprint
(
*
args
,
**
kwargs
):
print
(
*
args
,
file
=
sys
.
stderr
,
**
kwargs
)
print
(
*
args
,
file
=
sys
.
stderr
,
**
kwargs
)
Loading