Show details button by default

This commit is contained in:
adrienmalin
2018-08-19 23:08:54 +02:00
parent ee0e684e82
commit 8139bf8154
4 changed files with 8 additions and 3 deletions

View File

@ -2,7 +2,7 @@
import re
first_cap_re = re.compile('(.)([A-Z][a-z]+)')
first_cap_re = re.compile('([^.])([A-Z][a-z]+)')
all_cap_re = re.compile('([a-z0-9])([A-Z])')
def snake_case(s):