Fix distance_base_unit extraction in JPK driver for encoded data.
[hooke.git] / hooke / driver / __init__.py
index 4e37d79f07e16cf804782ffd70623031e2d8d92c..8704f5d58cfa072bf77938f1590144bc06d18307 100644 (file)
@@ -25,6 +25,7 @@ to write your own to handle your lab's specific format.
 """
 
 import logging
+import os.path
 
 from ..config import Setting
 from ..util.pluggable import IsSubclass, construct_graph
@@ -88,9 +89,7 @@ class Driver (object):
         The input `info` :class:`dict` may contain attributes read
         from the :class:`~hooke.playlist.FilePlaylist`.
 
-        The `info` :class:`dict` must contain values for the keys:
-        'filetype' and 'experiment'.  See :class:`hooke.curve.Curve`
-        for details.
+        See :class:`hooke.curve.Curve` for details.
         """
         raise NotImplementedError