From 15d812321c8e56075d3c912df0c0f6f965b3c72e Mon Sep 17 00:00:00 2001 From: "Michael D. M. Dryden" Date: Fri, 28 Nov 2014 17:22:53 -0500 Subject: [PATCH] Fix some docstrings. --- dstat-interface/dstat-interface/dstat_comm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dstat-interface/dstat-interface/dstat_comm.py b/dstat-interface/dstat-interface/dstat_comm.py index 4a400a3..9e7abf1 100644 --- a/dstat-interface/dstat-interface/dstat_comm.py +++ b/dstat-interface/dstat-interface/dstat_comm.py @@ -142,7 +142,7 @@ class Experiment(object): def run(self, ser_port): """Execute experiment. Connects and sends handshake signal to DStat - then sendsself.commands. Don't call directly as a process in Windows, + then sends self.commands. Don't call directly as a process in Windows, use run_wrapper instead. Arguments: @@ -402,7 +402,7 @@ class SWVExp(Experiment): class DPVExp(SWVExp): """Diffential Pulse Voltammetry experiment.""" def __init__(self, parameters, main_pipe): - """Overrides SWVExp method""" + """Overrides SWVExp method, extends Experiment method""" super(SWVExp, self).__init__(parameters, main_pipe) self.datatype = "SWVData" -- GitLab