diff options
author | 2021-12-26 15:31:26 -0800 | |
---|---|---|
committer | 2021-12-26 15:31:26 -0800 | |
commit | 8bee96bc5f5bdffd64ff2895088d593f6f3436c5 (patch) | |
tree | 804704f356f72c6240315d0e20e3d967b3a0d19a | |
parent | Add tests for main() (diff) |
Skip coverage of if __name__ == "__main__":
-rw-r--r-- | snekbox/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/__main__.py b/snekbox/__main__.py index 1a33587..eb42629 100644 --- a/snekbox/__main__.py +++ b/snekbox/__main__.py @@ -44,5 +44,5 @@ def main() -> None: sys.exit(result.returncode) -if __name__ == "__main__": +if __name__ == "__main__": # pragma: no cover main() |