diff options
author | Chris Luke <chrisy@flirble.org> | 2018-04-10 15:19:54 -0400 |
---|---|---|
committer | Chris Luke <chrisy@flirble.org> | 2018-04-10 15:19:54 -0400 |
commit | 9c4ae7f6d0995f06df12e2ad8c586537da16f0ae (patch) | |
tree | 2887b59a6cd974faafb69060c661d616b82e1fab /test/vpp_papi_provider.py | |
parent | 1286a15a6e60f80b0e1b349f876de8fa38c71368 (diff) |
test: Fix issues with new version of pycodestyle (VPP-1232)
- Ignore warnings W504 (newline after binary operator) which otherwise
occurs a significant number of times.
- Fix two instances of lines >79 chars.
Change-Id: I8cef56f8afc237187995e638e610c8c0554e2bb5
Signed-off-by: Chris Luke <chrisy@flirble.org>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 4fdd94ba351..24483fe82b8 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -568,7 +568,8 @@ class VppPapiProvider(object): 'enable': enable}) def bridge_flags(self, bd_id, is_set, feature_bitmap): - """Enable/disable required feature of the bridge domain with defined ID. + """Enable/disable required feature of the bridge domain with defined + ID. :param int bd_id: Bridge domain ID. :param int is_set: Set to 1 to enable, set to 0 to disable the feature. |