Hi,
using latest codesepell (2.4.2).
- This is not recognized as an error:
'beginns
- But this is an error:
' beginns (There is a blank as second character)
Here is the original python code:
# no error
self._rowidx_repeated = _create_form_entry(
label=_(
'Trigger a backup when a new hour, day, week, or month '
'beginns. If the system was off, it runs on the next start.'
),
tooltip=_REPEATEDLY_TOOLTIP
)
# ERROR
self._rowidx_repeated = _create_form_entry(
label=_(
'Trigger a backup when a new hour, day, week, or month '
' beginns. If the system was off, it runs on the next start.'
),
tooltip=_REPEATEDLY_TOOLTIP
)
Hi,
using latest codesepell (2.4.2).
'beginns' beginns(There is a blank as second character)Here is the original python code: