From f436f4fd70e27aa3c3733fca1c6f41279a4d77fb Mon Sep 17 00:00:00 2001 From: Kyunggeun Lee Date: Mon, 4 Nov 2024 11:12:45 -0800 Subject: [PATCH] Resolve pylint warning Signed-off-by: Kyunggeun Lee --- .../torch/src/python/aimet_torch/v2/deepspeed_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TrainingExtensions/torch/src/python/aimet_torch/v2/deepspeed_utils.py b/TrainingExtensions/torch/src/python/aimet_torch/v2/deepspeed_utils.py index 33af3ed9090..23805588e73 100644 --- a/TrainingExtensions/torch/src/python/aimet_torch/v2/deepspeed_utils.py +++ b/TrainingExtensions/torch/src/python/aimet_torch/v2/deepspeed_utils.py @@ -90,7 +90,7 @@ def _do_patch_dummy_parameters(module): except ImportError: class SafeGatheredParameters(contextlib.nullcontext): """ Dummy placeholder in case deepspeed doesn't exist """ - def __init__(self, *args, **kwargs): + def __init__(self, *args, **kwargs): # pylint: disable=unused-argument super().__init__()