From bbe7a2d8854d17c54d15063e84785e97ce5d0fbf Mon Sep 17 00:00:00 2001 From: Patrick Godwin <patrick.godwin@ligo.org> Date: Fri, 6 Jul 2018 10:17:42 -0700 Subject: [PATCH] datasource.py: fixed whitespace issue for doctest in injection_dict_from_channel_list_with_node_range --- gstlal/python/datasource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstlal/python/datasource.py b/gstlal/python/datasource.py index fd223d049a..fe52b8b95e 100644 --- a/gstlal/python/datasource.py +++ b/gstlal/python/datasource.py @@ -176,7 +176,7 @@ def injection_dict_from_channel_list_with_node_range(injection_list): Examples: >>> injection_dict_from_channel_list_with_node_range(["0000:0002:Injection_1.xml", "0002:0004:Injection_2.xml"]) -{'0000': 'Injection_1.xml', '0001': 'Injection_1.xml', '0002': 'Injection_2.xml', '0003': 'Injection_2.xml'} + {'0000': 'Injection_1.xml', '0001': 'Injection_1.xml', '0002': 'Injection_2.xml', '0003': 'Injection_2.xml'} """ outdict = {} for injection_name in injection_list: -- GitLab