diff options
Diffstat (limited to 'lib/param/string.py')
| -rw-r--r-- | lib/param/string.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/param/string.py b/lib/param/string.py deleted file mode 100644 index 14e8e87..0000000 --- a/lib/param/string.py +++ /dev/null @@ -1,21 +0,0 @@ -"""String class definition lives here""" -from .param import Param -import re -class String(Param): - """String param class definition - Args: - value: a string - classname: name of the class to which the param instance will belong - """ - def __init__(self, value, classname=""): - super(String, self).__init__(classname=classname) - if value: - try: - self.value = self.sanitize(value) - except Exception as e: - self.err_warn("Unable to sanitize: %s\nreason:%s" % (str(value), str(e))) - else: - self.value = "" - def sanitize(self, s): - """Removes non-word characters from the string for security reasons""" - return re.sub(r'\W+', '', s) |
