From 96cebe345de42cb2339c57e4506d25ea1001eb71 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Wed, 2 Sep 2020 21:44:15 -0400 Subject: [PATCH] fix png.py tests --- packages/python/plotly/plotly/express/png.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/packages/python/plotly/plotly/express/png.py b/packages/python/plotly/plotly/express/png.py index 64f110b55a..550139038e 100755 --- a/packages/python/plotly/plotly/express/png.py +++ b/packages/python/plotly/plotly/express/png.py @@ -2348,17 +2348,3 @@ def cli_open(path): if path == "-": return binary_stdin() return open(path, "rb") - - -def main(argv): - """ - Run command line PNG. - """ - print("What should the command line tool do?", file=sys.stderr) - - -if __name__ == "__main__": - try: - main(sys.argv) - except Error as e: - print(e, file=sys.stderr)