mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-31 18:58:01 +00:00
LFUtils: uses more appropriate assignment operators for python 3.5.x
This commit is contained in:
@@ -25,10 +25,10 @@ REPORT_TIMER_MS_SLOW = 3000
|
|||||||
|
|
||||||
|
|
||||||
class PortEID:
|
class PortEID:
|
||||||
shelf: 1
|
shelf = 1
|
||||||
resource: 1
|
resource = 1
|
||||||
port_id: 0
|
port_id = 0
|
||||||
port_name: ""
|
port_name = ""
|
||||||
|
|
||||||
def __init__(self, p_resource=1, p_port_id=0, p_port_name=""):
|
def __init__(self, p_resource=1, p_port_id=0, p_port_name=""):
|
||||||
resource = p_resource
|
resource = p_resource
|
||||||
|
|||||||
Reference in New Issue
Block a user