Skip to content

Commit cdbbfe4

Browse files
removed optional arg for consumer_context
Signed-off-by: Daniel Osypenko <dosypenk@redhat.com>
1 parent 1f3dc19 commit cdbbfe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ocs_ci/ocs/resources/clientprofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ClientProfile:
1414
Base ClientProfile class
1515
"""
1616

17-
def __init__(self, client_profile_name, consumer_context=None):
17+
def __init__(self, client_profile_name, consumer_context):
1818

1919
self.consumer_context = consumer_context
2020
self.name = client_profile_name

ocs_ci/ocs/resources/storageconsumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class StorageConsumer:
2121
Base StorageConsumer class
2222
"""
2323

24-
def __init__(self, consumer_name, consumer_context=None):
24+
def __init__(self, consumer_name, consumer_context):
2525
"""
2626
Starting from ODF 4.19 (Converged) this CR has optional Spec fields:
2727
StorageQuotaInGiB int

0 commit comments

Comments
 (0)