chaostoolkit-incubator / chaostoolkit-azure

Chaos Toolkit Extension for Azure
https://chaostoolkit.org/
Apache License 2.0
22 stars 28 forks source link

Don't use any as a type #114

Open Lawouach opened 4 years ago

Lawouach commented 4 years ago

Many functions use the any function as a type instead of typing.Any. For instance

https://github.com/chaostoolkit-incubator/chaostoolkit-azure/blob/master/chaosazure/vmss/actions.py#L19

def delete_vmss(filter: str = None,
                instance_criteria: Iterable[Mapping[str, any]] = None,
                configuration: Configuration = None,
                secrets: Secrets = None):