From bdd150981ab49095071b4bd079837b6a608f70bc Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 16 Oct 2012 14:16:45 -0400 Subject: [PATCH] =?utf8?q?device:=20remove=20trailing=20whitespace=20from?= =?utf8?q?=20=C3=89ric's=20patch.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- pycomedi/device.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pycomedi/device.pyx b/pycomedi/device.pyx index 3c6b679..a7d6d16 100644 --- a/pycomedi/device.pyx +++ b/pycomedi/device.pyx @@ -272,15 +272,15 @@ cdef class Device (object): _error.raise_error( function_name='comedi_get_default_calibration_path') return ret - + def parse_calibration(self, path=None): """The soft calibration from a file for this device. - + If path is None, the default calibration file is used. """ if path is None: path = self.get_default_calibration_path() - + ret = _comedilib_h.comedi_parse_calibration_file(path) if ret == NULL: _error.raise_error( -- 2.26.2