Skip to content

Commit

Permalink
Merge branch 'main' into fix_dualspace
Browse files Browse the repository at this point in the history
  • Loading branch information
nbouziani authored Sep 12, 2023
2 parents 64e84ff + 9d04892 commit 1db06eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fenicsx-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Install Basix and FFCx
run: |
python3 -m pip install git+https://github.com/FEniCS/basix.git
python3 -m pip install git+https://github.com/FEniCS/ffcx.git@dokken/group_integrals_v2
python3 -m pip install git+https://github.com/FEniCS/ffcx.git
- name: Clone DOLFINx
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion ufl/utils/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def istr(o):

def estr(elements):
"""Format list of elements for printing."""
return ", ".join(e.shortstr() for e in elements)
return ", ".join(f"{e}" for e in elements)


def _indent_string(n):
Expand Down

0 comments on commit 1db06eb

Please sign in to comment.