Skip to content

Commit 01cdd5c

Browse files
authored
Update simple.py
Added comment and couple blank lines to see if lint will remove them
1 parent 5a1d3c8 commit 01cdd5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/simple.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ def run_command(command):
99
output = subprocess.check_output(cmd)
1010
return output
1111

12+
# NWS edit this to make something for lint to change ???
13+
1214
def run_lsblk(device):
1315
"""
1416
Runs lsblk command and produces JSON output:
@@ -36,8 +38,10 @@ def run_lsblk(device):
3638

3739

3840
def main(device):
41+
3942
print(f" '{run_lsblk(device)}'")
4043

4144
if __name__ == '__main__':
4245
import sys
43-
main(sys.argv[-1])
46+
47+
main(sys.argv[-1])

0 commit comments

Comments
 (0)