Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
empyre
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Teresa Weßels
empyre
Commits
caafc9aa
Commit
caafc9aa
authored
5 years ago
by
Jan Caron
Browse files
Options
Downloads
Patches
Plain Diff
Brute force solution via noqa...
parent
45557f0c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyramid/magcreator/__init__.py
+1
-1
1 addition, 1 deletion
pyramid/magcreator/__init__.py
setup.cfg
+3
-1
3 additions, 1 deletion
setup.cfg
with
4 additions
and
2 deletions
pyramid/magcreator/__init__.py
+
1
−
1
View file @
caafc9aa
...
...
@@ -6,7 +6,7 @@
from
.
import
shapes
from
.
import
examples
from
.magcreator
import
*
from
.magcreator
import
*
# noqa: F403 # TODO: Why is noqa still necessary? It's in setup.cfg :-(!
__all__
=
[
'
shapes
'
,
'
examples
'
]
__all__
.
extend
(
magcreator
.
__all__
)
This diff is collapsed.
Click to expand it.
setup.cfg
+
3
−
1
View file @
caafc9aa
...
...
@@ -122,5 +122,7 @@ flake8-ignore =
pyramid/__init__.py
F401
# module imported but unused
pyramid/__init__.py
F403
# 'from module import *' used; unable to detect undefined names
pyramid/__init__.py
F405
# Name may be undefined, or defined from star imports: module
pyramid/magcreator/__init__.py
F401,F403,F405
# same as above
pyramid/magcreator/__init__.py
F401
# same as above
pyramid/magcreator/__init__.py
F403
# same as above
pyramid/magcreator/__init__.py
F405
# same as above
#doc/conf.py ALL # TODO: delete?
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment