diff --git a/streaming_form_data/targets.py b/streaming_form_data/targets.py index d1f9b087..80cb44e7 100644 --- a/streaming_form_data/targets.py +++ b/streaming_form_data/targets.py @@ -85,9 +85,12 @@ def value(self): class ListTarget(BaseTarget): - """ValueTarget stores the input in an in-memory list of bytes. - This is useful in case you'd like to have the value contained in an - in-memory string. + """ListTarget stores the input in an in-memory list of bytes, + which is then joined into the final value and appended to an in-memory + list of byte strings when each value is finished. + + This is usefull for situations where more than one value may be submitted for + the same argument. """ def __init__(self, _type=bytes, *args, **kwargs):