Skip to content

Commit 1dcbfd9

Browse files
Merge pull request #440 from martin-belanger/black
black: reformatted to comply with latest black version
2 parents 99a3905 + 4c5aad3 commit 1dcbfd9

8 files changed

Lines changed: 13 additions & 18 deletions

File tree

stacctl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
#
88
# Authors: Martin Belanger <[email protected]>
99
#
10-
''' STorage Appliance Connector Control Utility
11-
'''
10+
'''STorage Appliance Connector Control Utility'''
1211
import sys
1312
import json
1413
import pprint

stacd.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
#
88
# Authors: Martin Belanger <[email protected]>
99
#
10-
''' STorage Appliance Connector Daemon
11-
'''
10+
'''STorage Appliance Connector Daemon'''
1211
import sys
1312
from argparse import ArgumentParser
1413
from staslib import defs

stafctl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
#
88
# Authors: Martin Belanger <[email protected]>
99
#
10-
''' STorage Appliance Finder Control Utility
11-
'''
10+
'''STorage Appliance Finder Control Utility'''
1211
import sys
1312
import json
1413
import pprint

stafd.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
#
88
# Authors: Martin Belanger <[email protected]>
99
#
10-
''' STorage Appliance Finder Daemon
11-
'''
10+
'''STorage Appliance Finder Daemon'''
1211
import sys
1312
from argparse import ArgumentParser
1413
from staslib import defs

stasadm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# Authors: Martin Belanger <[email protected]>
99
#
10-
''' STorage Appliance Services Admin Tool '''
10+
'''STorage Appliance Services Admin Tool'''
1111
import os
1212
import sys
1313
import uuid

staslib/avahi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#
77
# Authors: Martin Belanger <[email protected]>
88
#
9-
''' Module that provides a way to retrieve discovered
10-
services from the Avahi daemon over D-Bus.
9+
'''Module that provides a way to retrieve discovered
10+
services from the Avahi daemon over D-Bus.
1111
'''
1212
import socket
1313
import typing

staslib/defs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
#
77
# Authors: Martin Belanger <[email protected]>
88

9-
''' @brief This file gets automagically configured by meson at build time.
10-
'''
9+
'''@brief This file gets automagically configured by meson at build time.'''
1110
import os
1211
import sys
1312
import shutil

staslib/version.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
#
77
# Authors: Martin Belanger <[email protected]>
88
#
9-
''' distutils (and hence LooseVersion) is being deprecated. None of the
10-
suggested replacements (e.g. from pkg_resources import parse_version) quite
11-
work with Linux kernel versions the way LooseVersion does.
9+
'''distutils (and hence LooseVersion) is being deprecated. None of the
10+
suggested replacements (e.g. from pkg_resources import parse_version) quite
11+
work with Linux kernel versions the way LooseVersion does.
1212
13-
It was suggested to simply lift the LooseVersion code and vendor it in,
14-
which is what this module is about.
13+
It was suggested to simply lift the LooseVersion code and vendor it in,
14+
which is what this module is about.
1515
'''
1616

1717
import re

0 commit comments

Comments
 (0)