Skip to content

Commit

Permalink
Password handling update
Browse files Browse the repository at this point in the history
  • Loading branch information
lavadk committed Apr 10, 2021
1 parent eadd7a9 commit 542f9d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
13 changes: 2 additions & 11 deletions liker/command/params.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
from tengine import CommandParam
from tengine import CommandParam, tengine_command_params

command_params = [
CommandParam(name='--password',
help_str='Password to access the bot admin commands',
param_type=str),
CommandParam(name='--name',
help_str='Name of a variable to read',
param_type=str),
CommandParam(name='--value',
help_str='Value to set',
param_type=str),
command_params = tengine_command_params.params + [
CommandParam(name='--channel_id',
help_str='Channel id',
param_type=str),
Expand Down
2 changes: 1 addition & 1 deletion tengine

0 comments on commit 542f9d9

Please sign in to comment.