Skip to content
Snippets Groups Projects
Unverified Commit e232f47e authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

dstat_comm.py - Prevent DPVExp from calling __init__ in SWVExp instead of Experiment.

parent 129c0db9
No related merge requests found
......@@ -321,7 +321,7 @@ class DPVExp(SWVExp):
"""Diffential Pulse Voltammetry experiment."""
def __init__(self, parameters, main_pipe):
"""Overrides SWVExp method"""
super(DPVExp, self).__init__(parameters, main_pipe)
super(SWVExp, self).__init__(parameters, main_pipe)
self.datatype = "SWVData"
self.xlabel = "Voltage (mV)"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment