[v2,18/25] libtuning: agc: Fix kwargs handling
diff mbox series

Message ID 20240628104828.2928109-19-stefan.klug@ideasonboard.com
State New
Headers show
Series
  • Add ccm calibration to libtuning
Related show

Commit Message

Stefan Klug June 28, 2024, 10:47 a.m. UTC
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>

---
 utils/tuning/libtuning/modules/agc/agc.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Laurent Pinchart June 29, 2024, 12:02 a.m. UTC | #1
Hi Stefan,

Thank you for the patch.

On Fri, Jun 28, 2024 at 12:47:11PM +0200, Stefan Klug wrote:

This needs a commit message.

> Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
> 
> ---
>  utils/tuning/libtuning/modules/agc/agc.py | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/utils/tuning/libtuning/modules/agc/agc.py b/utils/tuning/libtuning/modules/agc/agc.py
> index 9c8899badc79..3631540844bc 100644
> --- a/utils/tuning/libtuning/modules/agc/agc.py
> +++ b/utils/tuning/libtuning/modules/agc/agc.py
> @@ -14,8 +14,7 @@ class AGC(Module):
>      out_name = 'GenericAGC'
>  
>      # \todo Add sector shapes and stuff just like lsc
> -    def __init__(self, *,
> -                 debug: list):
> +    def __init__(self, debug: list):
>          super().__init__()
>  
>          self.debug = debug

Patch
diff mbox series

diff --git a/utils/tuning/libtuning/modules/agc/agc.py b/utils/tuning/libtuning/modules/agc/agc.py
index 9c8899badc79..3631540844bc 100644
--- a/utils/tuning/libtuning/modules/agc/agc.py
+++ b/utils/tuning/libtuning/modules/agc/agc.py
@@ -14,8 +14,7 @@  class AGC(Module):
     out_name = 'GenericAGC'
 
     # \todo Add sector shapes and stuff just like lsc
-    def __init__(self, *,
-                 debug: list):
+    def __init__(self, debug: list):
         super().__init__()
 
         self.debug = debug