diff options
author | pmikus <pmikus@cisco.com> | 2021-06-10 08:02:29 +0000 |
---|---|---|
committer | pmikus <pmikus@cisco.com> | 2021-06-10 11:05:48 +0000 |
commit | 7829fea4a2c8936513fa95215b7d84997f814a69 (patch) | |
tree | a75d02efa5a270fbe31a845bcc3fc66de76bb827 /GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py | |
parent | 8b25b4e89bdba964f2a3d602b8c47f551a084724 (diff) |
FIX: Pylint reduce
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: I909942dbb920df7f0fe15c0c92cda92c3cd8d8ad
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py')
-rw-r--r-- | GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py b/GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py index f5da9d95b7..91df41eba7 100644 --- a/GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py +++ b/GPL/traffic_profiles/trex/trex-stl-2n-dot1qip4asym-ip4src254.py @@ -70,24 +70,24 @@ class TrafficStreams(TrafficStreamsBaseClass): # Direction 0 --> 1 base_pkt_a = ( - Ether() / - IP( - src=self.p1_src_start_ip, - dst=self.p1_dst_start_ip, - proto=61 - ) + Ether() / + IP( + src=self.p1_src_start_ip, + dst=self.p1_dst_start_ip, + proto=61 + ) ) # Direction 1 --> 0 base_pkt_b = ( - Ether() / - Dot1Q( - vlan=self.vlan_id - ) / - IP( - src=self.p2_src_start_ip, - dst=self.p2_dst_start_ip, - proto=61 - ) + Ether() / + Dot1Q( + vlan=self.vlan_id + ) / + IP( + src=self.p2_src_start_ip, + dst=self.p2_dst_start_ip, + proto=61 + ) ) # Direction 0 --> 1 |