diff options
author | Joe Guo <joeg@catalyst.net.nz> | 2018-07-30 18:15:34 +1200 |
---|---|---|
committer | Douglas Bagnall <dbagnall@samba.org> | 2018-08-24 07:49:26 +0200 |
commit | bbb9f57603de490b39e5ad1b71e36f127291194b (patch) | |
tree | ec81b3ecf24f5e163dbc7e5a88c588b8ed0a250b /python/samba/ndr.py | |
parent | aa163f1a9c858203d900bbeda0e76ca247d0eace (diff) | |
download | samba-bbb9f57603de490b39e5ad1b71e36f127291194b.tar.gz |
PEP8: fix E127: continuation line over-indented for visual indent
Signed-off-by: Joe Guo <joeg@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'python/samba/ndr.py')
-rw-r--r-- | python/samba/ndr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/ndr.py b/python/samba/ndr.py index d84e9d6f9e0..8879caf59a5 100644 --- a/python/samba/ndr.py +++ b/python/samba/ndr.py @@ -83,7 +83,7 @@ def ndr_unpack_in(object, data, bigendian=False, ndr64=False, allow_remaining=Fa if ndr_unpack_in_fn is None: raise TypeError("%r is not a NDR function object" % object) ndr_unpack_in_fn(data, bigendian=bigendian, ndr64=ndr64, - allow_remaining=allow_remaining) + allow_remaining=allow_remaining) return object @@ -122,7 +122,7 @@ def ndr_unpack_out(object, data, bigendian=False, ndr64=False, allow_remaining=F if ndr_unpack_out_fn is None: raise TypeError("%r is not a NDR function object" % object) ndr_unpack_out_fn(data, bigendian=bigendian, ndr64=ndr64, - allow_remaining=allow_remaining) + allow_remaining=allow_remaining) return object |