Infoblox-PS / ibx-sdk

Basic Tools and Functions used by other Integrations.
Apache License 2.0
4 stars 0 forks source link

Discussion to remove **args from Examples Scritps #28

Closed mjsmithkc closed 11 months ago

mjsmithkc commented 11 months ago

Reactor existing examples removing args**

Change: def main(**args: Any) -> None:

to: def main(grid_,mgr:str, username: str, ..., ... ) -> None:

This would require additional code changed in main()

mjsmithkc commented 11 months ago

Examples have been refactored.