Can codly assign one number for a code with line breaks?

There were similar questions already. I thank for codly 1.3.0.
I want to use codly

#codly(languages: codly-languages)
```python
a = 1 + 2 \
     + 3 + 5
b = 6 + 7 \
     + 8 + 9
print(a + b)
```

to assign one line number to a code with breaks by \ just like below:

1 a = 1 + 2 \
     + 3 + 5
2 b = 6 + 7 \
     + 8 + 9
3 print(a + b)

Does the codly have some plans to realize above?