From 9ebb5c74774df57938b1cc88ee8d108ab0c12659 Mon Sep 17 00:00:00 2001 From: Robert Smallshire Date: Thu, 7 May 2015 22:23:50 +0200 Subject: [PATCH] Improved formatting (indentation). --- segpy/catalog.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/segpy/catalog.py b/segpy/catalog.py index d661f2a..9df70ca 100644 --- a/segpy/catalog.py +++ b/segpy/catalog.py @@ -119,11 +119,11 @@ class CatalogBuilder(object): if (index_stride is not None) and (value_stride is not None): assert value_stride != 0 return LinearRegularCatalog(index_min, - index_max, - index_stride, - value_start, - value_stop, - value_stride) + index_max, + index_stride, + value_start, + value_stop, + value_stride) return DictionaryCatalog(self._catalog)