| Conditions | 5 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
| 19 | def one_of_two_strings(stringa=None, stringb=None, desc="Input"): |
||
| 20 | if (stringb and isinstance(stringb, six.string_types))\ |
||
| 21 | or (stringa and isinstance(stringa, six.string_types)): |
||
| 22 | return |
||
| 23 | else: |
||
| 24 | raise Exception("No %s provided" % desc) |
||
| 25 |