3 Commits

Author SHA1 Message Date
Dmitry Belan c36bbde601 Remove Git commands from tasks - test student knowledge 2026-07-01 13:56:26 +03:00
Dmitry Belan e316d6e3ea Remove Git commands reference section 2026-07-01 13:52:26 +03:00
Dmitry Belan 3f41915ab8 Add comprehensive README with project description and Git practice tasks 2026-07-01 13:50:04 +03:00
2 changed files with 2 additions and 11 deletions
-9
View File
@@ -6,12 +6,3 @@ class FarmAgent:
@staticmethod
def get_manual():
return "Инструкция: pH 6.0"
def harvest(self):
ready = [c for c in self._module.cultures if c._stage == "Красный"]
return len(ready)
# TODO: fix this later
# DEBUG: проверить параметры
# FIXME: оптимизировать
+2 -2
View File
@@ -4,8 +4,8 @@ class BioCulture:
self._stage = "Зеленый"
def grow(self):
# Рабочий код вместо исключения
self._stage = "Красный"
# Заглушка, которая вызовет конфликт
raise NotImplementedError("Рост не реализован в main!")
class HydroponicModule: