From c2e9a6cce3aee3485b4696eb5266870f481341fd Mon Sep 17 00:00:00 2001 From: tulioricci <72670026+tulioricci@users.noreply.github.com> Date: Mon, 4 Dec 2023 15:43:43 -0600 Subject: [PATCH] Fix flake8 (#985) --- examples/sod.py | 2 +- examples/taylor-green.py | 2 +- examples/vortex.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/sod.py b/examples/sod.py index e23d22b57..9146e799d 100644 --- a/examples/sod.py +++ b/examples/sod.py @@ -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", diff --git a/examples/taylor-green.py b/examples/taylor-green.py index cda5d3881..7e087f0d4 100644 --- a/examples/taylor-green.py +++ b/examples/taylor-green.py @@ -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", diff --git a/examples/vortex.py b/examples/vortex.py index bb6552e01..ca8fce34d 100644 --- a/examples/vortex.py +++ b/examples/vortex.py @@ -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",