From e49c9043946a5f0a1f6faeb86d8578b550f9517c Mon Sep 17 00:00:00 2001 From: Jared Callaham Date: Thu, 12 Sep 2024 04:47:54 -0400 Subject: [PATCH] Fix formatting --- .devcontainer/devcontainer.json | 2 +- test/test_cyl.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 336caf7..1c6e311 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -18,7 +18,7 @@ // Use 'postCreateCommand' to run commands after the container is created. // Setting up an editable version of HydroGym - // "postCreateCommand": "source /home/firedrake/firedrake/bin/activate && pip install -e ." + "postCreateCommand": "source /home/firedrake/firedrake/bin/activate && pip install -e ." // Configure tool-specific properties. // "customizations": {}, diff --git a/test/test_cyl.py b/test/test_cyl.py index 9ce0e39..30244c3 100644 --- a/test/test_cyl.py +++ b/test/test_cyl.py @@ -82,14 +82,14 @@ def controller(t, obs): def test_env(): env_config = { - "flow": hgym.Cylinder, - "flow_config": { - "mesh": "medium", - }, - "solver": hgym.SemiImplicitBDF, - "solver_config": { - "dt": 1e-2, - }, + "flow": hgym.Cylinder, + "flow_config": { + "mesh": "medium", + }, + "solver": hgym.SemiImplicitBDF, + "solver_config": { + "dt": 1e-2, + }, } env = hgym.FlowEnv(env_config)