Skip to content

Commit 73e13b6

Browse files
committed
Avoid unused argument warning
1 parent b513c8a commit 73e13b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/tool/util/filters/wko_filter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ def filter_online_attributes(model, model_context):
4747
online_filter.traverse_model(model)
4848

4949

50-
def check_clustered_server_ports(model, model_context):
50+
def check_clustered_server_ports(model, _model_context):
5151
"""
5252
Set the CalculatedListenPorts attribute to false for dynamic clusters in the specified model.
5353
Warn if servers in a static cluster have different ports in the specified model.
5454
:param model: the model to be filtered
55-
:param model_context: unused, passed by filter_helper if called independently
55+
:param _model_context: unused, passed by filter_helper if called independently
5656
"""
5757
_method_name = 'check_clustered_server_ports'
5858

0 commit comments

Comments
 (0)