Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven committed Sep 23, 2024
1 parent ad25228 commit 7bb337f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions feeluown/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class Plugin:
`enable(app)` and `disable(app)` function. It can also implements
`init_config(config)` and initialize its configurations.
"""
# pylint: disable=too-many-positional-arguments
def __init__(self, module, alias='', version='', desc='',
author='', homepage='', dist_name=''):
"""插件对象
Expand Down
2 changes: 1 addition & 1 deletion feeluown/server/data_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SessionOptions:

class Request:
"""fuo 协议请求对象"""
# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
# FIXME: maybe add a property 'stdin_content' for Request.
def __init__(self, cmd, cmd_args=None,
cmd_options=None, options=None,
Expand Down

0 comments on commit 7bb337f

Please sign in to comment.