| Conditions | 1 |
| Total Lines | 5 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python3 |
||
| 15 | def __init__(self, appname, desc=None): |
||
| 16 | """Set default name, description, epilogue, arguments.""" |
||
| 17 | homeurl = "https://github.com/mbirth/tcl_ota_check" |
||
| 18 | super().__init__(prog=appname, description=desc, epilog=homeurl) |
||
| 19 | self.add_argument("--webdb", help="open web database in browser and exit", action="store_true") |
||
| 20 | |||
| 29 |