diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-23 04:51:19 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-23 04:51:19 +0200 |
| commit | bc23cc6c7db853770f7890284998eee0812e11cf (patch) | |
| tree | ac39eb28615a04eb11c49c8eb32b0fa65c20c545 | |
| parent | cdd0db4f615fd034e35ba89532650fd1e6e99c13 (diff) | |
Remove unused _parse_block() default parameter value.
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 8d48425..94eca04 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -605,7 +605,7 @@ class Config(object): visible_if_deps, res) def _parse_block(self, line_feeder, end_marker, parent, deps, - visible_if_deps=None, res=None): + visible_if_deps, res=None): """Parses a block, which is the contents of either a file or an if, menu, or choice statement. Returns a list with the Items in the block. |
