From 6f487e17d005a1973f3805965ae0298e34b8c218 Mon Sep 17 00:00:00 2001 From: Lindsey Date: Wed, 6 May 2015 16:34:24 -0700 Subject: [PATCH] forgot to stage Survey.py --- SimPEG/Survey.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SimPEG/Survey.py b/SimPEG/Survey.py index 05a2ad37..29bdb452 100644 --- a/SimPEG/Survey.py +++ b/SimPEG/Survey.py @@ -119,13 +119,12 @@ class BaseSrc(object): rxList = None #: SimPEG Receiver List rxPair = BaseRx - def __init__(self, loc, rxList, **kwargs): + def __init__(self, rxList, **kwargs): assert type(rxList) is list, 'rxList must be a list' for rx in rxList: assert isinstance(rx, self.rxPair), 'rxList must be a %s'%self.rxPair.__name__ assert len(set(rxList)) == len(rxList), 'The rxList must be unique' - self.loc = loc self.rxList = rxList Utils.setKwargs(self, **kwargs)