Problem
Ec2RemoteShellProxy.execute(..., **parameters: str) ... type is actually a Union at least of str and list[str] (might be more), which triggers IDE linters.
Recommendation
Leave **parameters untyped, let it be a pass-through to underlying SSM Manager.
Code
Problem
Ec2RemoteShellProxy.execute(..., **parameters: str) ...type is actually a Union at least of str and list[str] (might be more), which triggers IDE linters.Recommendation
Leave
**parametersuntyped, let it be a pass-through to underlying SSM Manager.Code
py-vm-instance-aws/src/ec2instances/ec2_instance_proxy.py
Line 101 in ef7cbfc