Skip to content

Commit a271c94

Browse files
committed
Deleted test condition
1 parent 2af4467 commit a271c94

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

remove-json-keys/src/remove_json_keys/lib/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def load(cli):
5151

5252
# Assign help tips from cli.msgs
5353
for ctrl_key, ctrl in vars(controls).items():
54-
if ctrl_key.startswith('legacy_') or ctrl_key.endswith('entropy') : continue
54+
if ctrl_key.startswith('legacy_') : continue
5555
if not hasattr(ctrl, 'help') : ctrl.help = getattr(cli.msgs, f'help_{ctrl_key.upper()}')
5656

5757
# Load from config file

translate-messages/src/translate_messages/lib/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def load(cli):
6161

6262
# Assign help tips from cli.msgs
6363
for ctrl_key, ctrl in vars(controls).items():
64-
if ctrl_key.startswith('legacy_') or ctrl_key.endswith('entropy') : continue
64+
if ctrl_key.startswith('legacy_') : continue
6565
if not hasattr(ctrl, 'help') : ctrl.help = getattr(cli.msgs, f'help_{ctrl_key.upper()}')
6666

6767
# Load from config file

0 commit comments

Comments
 (0)