Closed mjsmithkc closed 11 months ago
Reactor existing examples removing args**
Change: def main(**args: Any) -> None:
def main(**args: Any) -> None:
to: def main(grid_,mgr:str, username: str, ..., ... ) -> None:
def main(grid_,mgr:str, username: str, ..., ... ) -> None:
This would require additional code changed in main()
Examples have been refactored.
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()