88from matplotlib .axes import Axes
99
1010
11- # pylint: disable=too-many-locals, too-many-arguments
11+ # pylint: disable=too-many-locals, too-many-arguments, R0917
1212def plot_custom (x_y_data_tuples : list [Tuple ], figsize : Tuple [int , int ]= (10 , 3 ),
1313 xlabel : str = 'x' , ylabel : str = 'y' , legends : list [str ]| None = None ,
1414 linestyles : list [str ]| None = None , xaxis_reverse : bool = False ,
@@ -58,6 +58,7 @@ def plot_custom(x_y_data_tuples: list[Tuple], figsize: Tuple[int, int]=(10, 3),
5858 plt .show ()
5959
6060
61+ # pylint: disable=R0917
6162def plot_time_vs_voltage (time_voltage_data_tuples : list [Tuple ], figsize : Tuple [int , int ]= (6 , 2 ),
6263 legends : list [str ]| None = None , linestyles : list [str ]| None = None ,
6364 linewidth : float | None = None , units : Tuple [str , str ]= ('sec' , 'V' ),
@@ -70,6 +71,7 @@ def plot_time_vs_voltage(time_voltage_data_tuples: list[Tuple], figsize: Tuple[i
7071 linewidth = linewidth , xlims = xlims , ylims = ylims , colors = colors )
7172
7273
74+ # pylint: disable=R0917
7375def plot_time_vs_current (time_current_data_tuples : list [Tuple ], figsize : Tuple [int , int ]= (6 , 2 ),
7476 legends : list [str ]| None = None , linestyles : list [str ]| None = None ,
7577 linewidth : float | None = None , units : Tuple [str , str ]= ('sec' , 'A' ),
@@ -82,6 +84,7 @@ def plot_time_vs_current(time_current_data_tuples: list[Tuple], figsize: Tuple[i
8284 ylims = ylims , xlims = xlims , linewidth = linewidth , colors = colors )
8385
8486
87+ # pylint: disable=R0917
8588def plot_time_vs_temperature (time_temperature_data_tuples : list [Tuple ],
8689 figsize : Tuple [int , int ]= (6 , 2 ), legends : list [str ]| None = None ,
8790 linestyles : list [str ]| None = None , linewidth : float | None = None ,
0 commit comments