Skip to content

Commit e37567a

Browse files
committed
make pylint happy
1 parent 8ed57d8 commit e37567a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_run_part.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
class TestRunPart:
1717
@staticmethod
1818
def test_args():
19+
# pylint: disable=unused-variable
1920
# arrange
2021
env_state = ppmc.EnvState(ENV_STATE_CTOR_ARG_MINIMAL)
2122
aero_data = ppmc.AeroData(AERO_DATA_CTOR_ARG_MINIMAL)
@@ -26,7 +27,10 @@ def test_args():
2627
run_part_opt = ppmc.RunPartOpt(RUN_PART_OPT_CTOR_ARG_MINIMAL)
2728

2829
# act
29-
# ppmc.run_part(scenario, env_state, aero_data, aero_state, gas_data, gas_state, run_part_opt)
30+
# TODO #33
31+
# ppmc.run_part(
32+
# scenario, env_state, aero_data, aero_state, gas_data, gas_state, run_part_opt
33+
# )
3034

3135
# assert
3236
pass

0 commit comments

Comments
 (0)