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)