mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-02 02:30:07 +00:00
5 lines
98 B
Python
5 lines
98 B
Python
import re
|
|
|
|
|
|
def remove_whitespace(string: str) -> str:
|
|
return re.sub("[ \n\t]+", " ", string)
|