Skip to content

Commit

Permalink
Merge branch 'FEniCS:main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
dham authored Sep 22, 2023
2 parents 7fbbd64 + 77ae57c commit cf66c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ufl/utils/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def camel2underscore(name):
letters = []
lastlower = False
for i in name:
thislower = i.islower()
thislower = i.islower() or i.isdigit()
if not thislower:
# Don't insert _ between multiple upper case letters
if lastlower:
Expand Down

0 comments on commit cf66c4b

Please sign in to comment.