Skip to content

Commit

Permalink
pylint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vg12345 committed Sep 29, 2024
1 parent aff3672 commit 184b509
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PortData:
"""
Represents the port data.
"""
#pylint: disable=too-many-arguments
#pylint: disable=too-many-positional-arguments,too-many-arguments
def __init__(self, port_name=None, port_num=None, peer=None, node_type=None, active_speed=None, port_width=None, port_guid=None):
"""
Initialize a new instance of the PortData class.
Expand Down Expand Up @@ -470,7 +470,7 @@ def check_deisolation_conditions(self, isolated_port):

return True

#pylint: disable=too-many-arguments,too-many-locals
#pylint: disable=too-many-positional-arguments,too-many-arguments,too-many-locals
def calc_symbol_ber_rate(self, port_name, port_speed, port_width, col_name, time_delta):
"""
calculate the symbol BER rate for a given port given the time delta
Expand Down

0 comments on commit 184b509

Please sign in to comment.