From 4c222b96a6c8e102fa32783ecb4c6b3ce75717ec Mon Sep 17 00:00:00 2001 From: Robert Smallshire Date: Thu, 7 May 2015 20:34:56 +0200 Subject: [PATCH] Removes unnecessary code from CatalogBuilder. --- segpy/catalog.py | 1 - 1 file changed, 1 deletion(-) diff --git a/segpy/catalog.py b/segpy/catalog.py index 791a5b7..ad1983b 100644 --- a/segpy/catalog.py +++ b/segpy/catalog.py @@ -92,7 +92,6 @@ class CatalogBuilder(object): # Dictionary strategy - arbitrary keys and values return DictionaryCatalog(self._catalog) - #self._catalog.sort(key=lambda index_value: index_value[1]) value_start = self._catalog[0][1] value_stop = self._catalog[-1][1] value_stride = measure_stride(value for index, value in self._catalog)