Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Software
idms-linux-installer
Commits
0bf221b0
Commit
0bf221b0
authored
Jun 30, 2020
by
Nigel Kukard
Browse files
Change to using second line block comments
parent
6fbaf15a
Changes
3
Hide whitespace changes
Inline
Side-by-side
setup.cfg
View file @
0bf221b0
...
...
@@ -38,10 +38,10 @@ linters = pep257,pycodestyle,pyflakes,pylint,mccabe,mypy,isort
# D202: No blank lines allowed after function docstring
# D203: 1 blank line required before class docstring
# D21
3
: Multi-line docstring summary should start
at the second
line
# D21
2
: Multi-line docstring summary should start
on first
line
# R0201: Method could be a function
# R0903: Too few public methods
ignore = D202,D203,D21
3
,R0201,R0903
ignore = D202,D203,D21
2
,R0201,R0903
[pylama:pycodestyle]
max_line_length = 132
...
...
src/idmslinux_installer/ili.py
View file @
0bf221b0
...
...
@@ -34,7 +34,8 @@ __version__ = "0.1.7"
class
Ili
:
"""Ili is the IDMS Linux Installer class.
"""
Ili is the IDMS Linux Installer class.
This class handles the entire install process.
"""
...
...
src/idmslinux_installer/util/mkfs.py
View file @
0bf221b0
...
...
@@ -28,7 +28,8 @@ class Mkfs:
"""Initialize our class ."""
def
run
(
self
,
fstype
:
str
,
device
:
str
,
**
kwargs
)
->
str
:
"""Run mkfs and return the blkid of the filesystem.
"""
Run mkfs and return the blkid of the filesystem.
Args accepted are:
'fslabel' - Optional filesystem label
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment