Skip to content

Commit

Permalink
Merge pull request Pyomo#3021 from jsiirola/black-update
Browse files Browse the repository at this point in the history
Tracking change in Black rules
  • Loading branch information
mrmundt authored Oct 24, 2023
2 parents 47a9b26 + 11c7651 commit 02674df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyomo/common/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ def writelines(self, sequence):
r'|(?:\[\s*[A-Za-z0-9\.]+\s*\] +)' # [PASS]|[FAIL]|[ OK ]
)
_verbatim_line_start = re.compile(
r'(\| )' r'|(\+((-{3,})|(={3,}))\+)' # line blocks # grid table
r'(\| )' # line blocks
r'|(\+((-{3,})|(={3,}))\+)' # grid table
)
_verbatim_line = re.compile(
r'(={3,}[ =]+)' # simple tables, ======== sections
Expand Down

0 comments on commit 02674df

Please sign in to comment.