<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Thu, Sep 4, 2025 at 11:16 AM Luca Vizzarro <<a href="mailto:luca.vizzarro@arm.com">luca.vizzarro@arm.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Wed, Sep 03, 2025 at 02:04:12PM +0000, Andrew Bailey wrote:<br>
> diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py<br>
> index ad8cb273dc..4d9caceb37 100644<br>
> --- a/dts/framework/remote_session/testpmd_shell.py<br>
> +++ b/dts/framework/remote_session/testpmd_shell.py<br>
> @@ -19,7 +19,7 @@<br>
>  import time<br>
>  from collections.abc import Callable, MutableSet<br>
>  from dataclasses import dataclass, field<br>
> -from enum import Flag, auto<br>
> +from enum import Enum, Flag, auto<br>
>  from os import environ<br>
>  from pathlib import PurePath<br>
>  from typing import TYPE_CHECKING, Any, ClassVar, Concatenate, Literal, ParamSpec, Tuple, TypeAlias<br>
> @@ -344,6 +344,13 @@ def make_parser(cls) -> ParserFn:<br>
>          )<br>
>  <br>
>  <br>
> +class RxTxArgFlag(Enum):<br>
<br>
this could be StrEnum given the values used. Moreover, is it a<br>
flag? Looks like a regular enum to me.<br></blockquote><div><br></div><div>I was wondering the same but no, by my understanding it's currently an enum or StrEnum and I can't see us adding additional attributes in the future so that won't be changing.</div><div> </div></div></div>