Browse Source

Added some changes to the DataHandler class to deal with the options and their values

Roland Haroutiounian 8 years ago
parent
commit
6e6463cb8f
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      lodel/leapi/datahandlers/base_classes.py

+ 1
- 0
lodel/leapi/datahandlers/base_classes.py View File

@@ -64,6 +64,7 @@ class DataHandler(object):
64 64
 
65 65
     def check_options(self):
66 66
         for option_name, option_value in self.options_values.items():
67
+            # TODO Change the call to self.options_spec if the specifications are passed as tuple
67 68
             self.options_values[option_name] = self.options_spec[option_name].check_value(option_value)
68 69
 
69 70
     @property

Loading…
Cancel
Save