We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a88e743 commit 858265cCopy full SHA for 858265c
datajoint/utils.py
@@ -76,7 +76,9 @@ def is_camel_case(s):
76
>>> is_camel_case("TableName") # returns True
77
>>> is_camel_case("table_name") # returns False
78
"""
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)
+ 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)
82
83
84
def to_camel_case(s):
0 commit comments