Skip to content

Commit 096c864

Browse files
committed
refactor: arg format chnaged to snakecase
1 parent 8723c26 commit 096c864

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cryptlex/lexfloatclient/lexfloatclient.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def __init__(self, name, enabled, data):
2121
self.data = data
2222

2323
class HostConfig(object):
24-
def __init__(self, maxOfflineLeaseDuration):
25-
self.maxOfflineLeaseDuration = maxOfflineLeaseDuration
24+
def __init__(self, max_offline_lease_duration):
25+
self.max_offline_lease_duration = max_offline_lease_duration
2626

2727

2828
class LexFloatClient:
@@ -127,7 +127,7 @@ def GetFloatingClientLibraryVersion():
127127

128128
@staticmethod
129129
def GetHostConfig():
130-
"""Gets the host configuration.
130+
"""This function sends a network request to LexFloatServer to get the configuration details.
131131
132132
Raises:
133133
LexFloatClientException

0 commit comments

Comments
 (0)