Skip to content

Commit

Permalink
convert Atan2 to atan2 not atan_2 (FEniCS#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
dham authored Sep 22, 2023
1 parent 58c3068 commit 77ae57c
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 77ae57c

Please sign in to comment.