Skip to content

Commit 858265c

Browse files
committed
Format with black
1 parent a88e743 commit 858265c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datajoint/utils.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ def is_camel_case(s):
7676
>>> is_camel_case("TableName") # returns True
7777
>>> is_camel_case("table_name") # returns False
7878
"""
79-
return re.match(r"^[A-Z][a-z0-9]+(?:[A-Z][a-z0-9]+)*$", s) is not None and not contains_non_ascii_char(s)
79+
return re.match(
80+
r"^[A-Z][a-z0-9]+(?:[A-Z][a-z0-9]+)*$", s
81+
) is not None and not contains_non_ascii_char(s)
8082

8183

8284
def to_camel_case(s):

0 commit comments

Comments
 (0)