(o)
| 1011 | |
| 1012 | |
| 1013 | def ensure_list(o): |
| 1014 | if o is None: |
| 1015 | return [] |
| 1016 | if not isinstance(o, list): |
| 1017 | return [o] |
| 1018 | else: |
| 1019 | return o |
| 1020 | |
| 1021 | |
| 1022 | def open_file(filename): |
no outgoing calls
no test coverage detected
searching dependent graphs…