Skip to content

Commit a250a71

Browse files
committed
[patch] linting fixes
1 parent 3581a05 commit a250a71

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/mas/devops/sls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
logger = logging.getLogger(__name__)
55

6+
67
def listSLSInstances(dynClient: DynamicClient) -> list:
78
"""
89
Get a list of SLS instances on the cluster
@@ -14,7 +15,7 @@ def listSLSInstances(dynClient: DynamicClient) -> list:
1415
numSLS = len(licenseservices)
1516

1617
if numSLS == 1:
17-
logger.info(f"There is 1 SLS instance installed on this cluster:")
18+
logger.info("There is 1 SLS instance installed on this cluster:")
1819
logger.info(f" * {licenseservices[0]['metadata']['name']} ({{licenseservices[0]['metadata']['namespace']}}) v{licenseservices[0]['status']['versions']['reconciled']}")
1920
elif numSLS > 0:
2021
logger.info(f"There are {numSLS} SLS instances installed on this cluster:")

0 commit comments

Comments
 (0)