| 1 | def encode_morse(message): |
| 2 | char_to_dots = { |
| 3 | 'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', |
| 4 | 'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..', |
nothing calls this directly
no test coverage detected