Fix the 'some_mixed_string_with_spaces_underscores_and_hyphens' case
This commit is contained in:
@ -12,7 +12,8 @@ import re
|
|||||||
|
|
||||||
def snake(str):
|
def snake(str):
|
||||||
return '_'.join(re.sub('([A-Z][a-z]+)', r' \1',
|
return '_'.join(re.sub('([A-Z][a-z]+)', r' \1',
|
||||||
re.sub('([A-Z]+)', r' \1', str)).split()).lower()
|
re.sub('([A-Z]+)', r' \1',
|
||||||
|
str.replace('-', ' '))).split()).lower()
|
||||||
```
|
```
|
||||||
|
|
||||||
```py
|
```py
|
||||||
|
|||||||
Reference in New Issue
Block a user