From 37eb93d111c389171323005c2754b7a9c5e19b22 Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Sun, 6 Nov 2022 20:22:46 -0800 Subject: [PATCH] new insructions --- publish_package.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/publish_package.py b/publish_package.py index 553db0f..33b26d1 100644 --- a/publish_package.py +++ b/publish_package.py @@ -28,6 +28,7 @@ def main(): f"{HOST}/api/packages/{OWNER}/generic/{PKG_NAME}/{PKG_VERSION}" ) result.raise_for_status() + # pylint: disable=broad-except except Exception: # Intentionally Overlook Issues Here print("No package to delete.") @@ -43,4 +44,4 @@ def main(): result.raise_for_status() if __name__ == "__main__": - main() \ No newline at end of file + main()