From d7a10972991ba14018cfa1d3b489c9d5bb486d28 Mon Sep 17 00:00:00 2001 From: moscowsky Date: Mon, 15 Jun 2026 12:20:56 +0300 Subject: [PATCH] ignore and def params --- .gitignore | 1 + robot_controller.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/robot_controller.py b/robot_controller.py index 9f5dbee..575b444 100644 --- a/robot_controller.py +++ b/robot_controller.py @@ -3,7 +3,7 @@ import time class RobotController(object): - def __init__(self, fire_ext_max_capacity, collision_damage = 1, k_sof = 1, k_cas = 1, k_asset = 1): + def __init__(self, fire_ext_max_capacity = 5, collision_damage = 1, k_sof = 1, k_cas = 1, k_asset = 1): # STATE VARIABLES self._fire_ext_max_capacity = fire_ext_max_capacity