summaryrefslogtreecommitdiff
path: root/libmat/parser.py
diff options
context:
space:
mode:
authorjvoisin2015-11-02 18:18:22 +0100
committerjvoisin2015-11-02 18:18:22 +0100
commitf5a39ac0b6ddc9154b1b1b55d255074d6dd4eecd (patch)
tree9f0587d7f911fd911459f7292839462431904928 /libmat/parser.py
parent5b9c600ae96e63f1f7a7f9487512c3c9d8a356e7 (diff)
Some minors pep8 modifications
Diffstat (limited to 'libmat/parser.py')
-rw-r--r--libmat/parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmat/parser.py b/libmat/parser.py
index 43de6d6..c6ba0a4 100644
--- a/libmat/parser.py
+++ b/libmat/parser.py
@@ -85,7 +85,8 @@ class GenericParser(object):
85 except: 85 except:
86 return False 86 return False
87 87
88 def _remove(self, fieldset, field): 88 @staticmethod
89 def _remove(fieldset, field):
89 """ Delete the given field 90 """ Delete the given field
90 """ 91 """
91 del fieldset[field] 92 del fieldset[field]