[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app: add init_functions_loader #172

Merged
merged 4 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: black and pydocstyle disagreed
* black added an empty line after the function docstring, but pydocstyle
  said there doesn't have to be a empty line.

* added D202 to the pydocstyle ignore list to suppress the pydocstyle
  error
  • Loading branch information
utnapischtim committed Jun 22, 2023
commit 06252c58c093999da2f283f03dcf0f3ee515c6f4
1 change: 1 addition & 0 deletions invenio_base/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ def create_cli(create_app=None):

.. versionadded: 1.0.0
"""

# Flask 2.0 removed support for passing script_info argument. Below
# function is thus
def create_cli_app(*args):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ all_files = 1
universal = 1

[pydocstyle]
add_ignore = D401
add_ignore = D401, D202

[isort]
profile=black
Expand Down