1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-22 18:22:12 +01:00

Merge pull request #1691 from dmach/fix-help-command-descriptions

Fix command descriptions in help by moving the import statements under docstring in the do_*() methods
This commit is contained in:
Daniel Mach 2025-01-08 09:39:13 +01:00 committed by GitHub
commit 4fd94a02ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 724 additions and 664 deletions

File diff suppressed because it is too large Load Diff

View File

@ -66,3 +66,10 @@ console_scripts =
[flake8]
exclude = .git,__pycache__
max-line-length = 120
[pylint]
# import-outside-toplevel: we're using lazy imports on too many places
disable = import-outside-toplevel
[pylint.FORMAT]
max-line-length = 120