summaryrefslogtreecommitdiff
path: root/ncserver/module/system.py
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-10-23 20:28:20 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-10-23 20:28:20 -0500
commit8f4c96353b274673480133e4721b2cc24b3bc3a9 (patch)
treeb9098e37a64add2196b380fc69f4133a81b6b5bd /ncserver/module/system.py
parent1ae754a07a38be3a524774c42928aa4e13801d71 (diff)
downloadnetconfapk-8f4c96353b274673480133e4721b2cc24b3bc3a9.tar.gz
netconfapk-8f4c96353b274673480133e4721b2cc24b3bc3a9.tar.bz2
netconfapk-8f4c96353b274673480133e4721b2cc24b3bc3a9.tar.xz
netconfapk-8f4c96353b274673480133e4721b2cc24b3bc3a9.zip
PEP 8 style fixes
Diffstat (limited to 'ncserver/module/system.py')
-rw-r--r--ncserver/module/system.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ncserver/module/system.py b/ncserver/module/system.py
index d5c097c..5f72ab0 100644
--- a/ncserver/module/system.py
+++ b/ncserver/module/system.py
@@ -134,8 +134,9 @@ class NTPServer: # pylint: disable=R0902
nondef_args = ', '.join(
['{}={}'.format(*item) for item in args.items()]
)
- return "NTPServer('{host}', {nondef_args})".format(host=self.host,
- nondef_args=nondef_args)
+ return "NTPServer('{host}', {nondef_args})".format(
+ host=self.host, nondef_args=nondef_args
+ )
def __str__(self):
"""Return the configuration line for this server."""