mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Adding strip as the github actions were not picking up text with extra spaces
CURA-10901
This commit is contained in:
parent
3987969a22
commit
84f90eadf8
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class Formulas(Linter):
|
|||
if len(found.group().splitlines()) > 1:
|
||||
self._replacement_text = ''
|
||||
else:
|
||||
self._replacement_text = found.group().replace(incorrectString, self._correct_formula)
|
||||
self._replacement_text = found.group().replace(incorrectString, self._correct_formula).strip(' ')
|
||||
return found
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue