From 67cecf4671097a9ee0bedd7aee1b0ac7601181b1 Mon Sep 17 00:00:00 2001 From: steven Date: Mon, 3 Feb 2020 12:09:58 -0600 Subject: [PATCH] added statistics feature constants --- thefuck/const.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/thefuck/const.py b/thefuck/const.py index d272f1b2..22244067 100644 --- a/thefuck/const.py +++ b/thefuck/const.py @@ -87,3 +87,12 @@ DIFF_WITH_ALIAS = 0.5 SHELL_LOGGER_SOCKET_ENV = 'SHELL_LOGGER_SOCKET' SHELL_LOGGER_LIMIT = 5 + +APPLIED_RULES = 'Applied Rules' +SELECTED_RULES = 'Selected Rules' +NO_FUCKS_GIVEN = 'No fucks given' +DEFAULT_RECORDS_DICT = { + APPLIED_RULES: {}, + SELECTED_RULES: {}, + NO_FUCKS_GIVEN: 0 +} \ No newline at end of file