From ffeb853c552f2acc449d76948c9c6a22afee7c55 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Thu, 6 Sep 2018 06:21:54 +0530 Subject: [PATCH] Rename plot.py to plotting.py --- camelot/__init__.py | 2 +- camelot/{plot.py => plotting.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename camelot/{plot.py => plotting.py} (100%) diff --git a/camelot/__init__.py b/camelot/__init__.py index 9762184..6e416e4 100644 --- a/camelot/__init__.py +++ b/camelot/__init__.py @@ -1,4 +1,4 @@ from .__version__ import __version__ from .io import read_pdf -from .plot import plot_geometry \ No newline at end of file +from .plotting import plot_geometry \ No newline at end of file diff --git a/camelot/plot.py b/camelot/plotting.py similarity index 100% rename from camelot/plot.py rename to camelot/plotting.py