1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-09 01:05:53 +02:00

formatting

This commit is contained in:
Kelly Brazil
2022-03-21 13:27:44 -07:00
parent 4eb2d725d5
commit 90e79b7df3

View File

@ -126,7 +126,7 @@ def _is_separator(line: str) -> bool:
def _snake_case(line: str) -> str:
"""replace spaces between words with an underscores and set to lowercase"""
"""replace spaces between words with an underscore and set to lowercase"""
return re.sub(r'\b \b', '_', line).lower()