pyonair / PyonAir-pycom

http://www.PyonAir.org
Apache License 2.0
8 stars 3 forks source link

remove this multi option #118

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

remove this multi option

https://github.com/pyonair/PyonAir-pycom/blob/9b8cd7f8cb06d958981c1841ca740c9ae1cf723d/code/lib/Configuration.py#L60


        :return: values in configuration dictionary
        :rtype: dict, list of any, any
        """
        # TODO: Warn if key not in dict
        if keys is None:
            return self.configuration
        if isinstance(keys, list):
            return list(self.configuration[k] for k in keys if k in self.configuration)
            # TODO remove this multi option
        else:
            return self.configuration[keys]

1985e8d66fce5ec344ad99d9a7c645f4bab75086