(s1, s2)
| 72 | |
| 73 | |
| 74 | def appendStringIfNotEmpty(s1, s2): |
| 75 | if s2: |
| 76 | if not isinstance(s2, str): |
| 77 | s2 = str(s2) |
| 78 | if s1: |
| 79 | return s1 + " " + s2 |
| 80 | return s2 |
| 81 | return s1 |
| 82 | |
| 83 | |
| 84 | class CsPassword(CsDataBag): |
no outgoing calls
no test coverage detected