Skip to content

Commit

Permalink
Fix flake8 (#985)
Browse files Browse the repository at this point in the history
  • Loading branch information
tulioricci authored Dec 4, 2023
1 parent f5dc95e commit c2e9a6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/sod.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def my_rhs(t, state):
parser.add_argument("--leap", action="store_true",
help="use leap timestepper")
parser.add_argument("--overintegration", action="store_true",
help="use overintegration in the RHS computations"),
help="use overintegration in the RHS computations")
parser.add_argument("--esdg", action="store_true",
help="use flux-differencing/entropy stable DG for inviscid computations.")
parser.add_argument("--numpy", action="store_true",
Expand Down
2 changes: 1 addition & 1 deletion examples/taylor-green.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def my_rhs(t, state):
parser.add_argument("--resolution", default=8, type=int,
help="resolution in each spatial direction")
parser.add_argument("--overintegration", action="store_true",
help="use overintegration in the RHS computations"),
help="use overintegration in the RHS computations")
parser.add_argument("--esdg", action="store_true",
help="use flux-differencing/entropy stable DG for inviscid computations.")
parser.add_argument("--lazy", action="store_true",
Expand Down
2 changes: 1 addition & 1 deletion examples/vortex.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def my_rhs(t, state):
parser.add_argument("--leap", action="store_true",
help="use leap timestepper")
parser.add_argument("--overintegration", action="store_true",
help="use overintegration in the RHS computations"),
help="use overintegration in the RHS computations")
parser.add_argument("--esdg", action="store_true",
help="use flux-differencing/entropy stable DG for inviscid computations.")
parser.add_argument("--numpy", action="store_true",
Expand Down

0 comments on commit c2e9a6c

Please sign in to comment.