refactor: decouple — blueprint'ы + CSS/HTML разделение (по шаблону app-autotest)
This commit is contained in:
@@ -20,13 +20,7 @@ state_machine.py — apply_effect: применение результата о
|
||||
"""
|
||||
|
||||
|
||||
def _pluralize(word):
|
||||
"""Простейшая плюрализация."""
|
||||
if word.endswith("s"):
|
||||
return word
|
||||
if word.endswith("y") and len(word) > 2 and word[-2] not in "aeiou":
|
||||
return word[:-1] + "ies"
|
||||
return word + "s"
|
||||
from utils.pluralize import pluralize as _pluralize
|
||||
|
||||
|
||||
def apply_effect(op_uid, mock_state, services):
|
||||
|
||||
Reference in New Issue
Block a user