summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--command.py2
-rw-r--r--filter.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/command.py b/command.py
index 16b95e6..1b83429 100644
--- a/command.py
+++ b/command.py
@@ -37,7 +37,7 @@ class Command(object):
__metaclass__ = commands
def __init__(self, *filter_chain):
- self._filter_chain = filter_chain
+ self._filter_chain = filter_chain # already resolved
self._desc, self._options = None, None # later on-demand
self._fnc_defaults, self._fnc_varnames = None, None # ditto
diff --git a/filter.py b/filter.py
index 2484d98..17d8559 100644
--- a/filter.py
+++ b/filter.py
@@ -59,7 +59,7 @@ class Filter(object):
__metaclass__ = filters
def __init__(self, in_format, out_format):
- self._in_format, self._out_format = in_format, out_format
+ self._in_format, self._out_format = in_format, out_format # resolved
@hybridproperty
def in_format(this):