mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
fix pylint unused-argument
This commit is contained in:
parent
12c80f9062
commit
17cd07f1a7
6 changed files with 18 additions and 17 deletions
|
@ -655,7 +655,7 @@ class vcs:
|
|||
|
||||
# Derived classes need to implement this. It's called once basic checking
|
||||
# has been performend.
|
||||
def gotorevisionx(self, rev):
|
||||
def gotorevisionx(self, rev): # pylint: disable=unused-argument
|
||||
raise VCSException("This VCS type doesn't define gotorevisionx")
|
||||
|
||||
# Initialise and update submodules
|
||||
|
@ -1683,7 +1683,7 @@ def get_apk_debuggable_androguard(apkfile):
|
|||
return False
|
||||
|
||||
|
||||
def isApkAndDebuggable(apkfile, config):
|
||||
def isApkAndDebuggable(apkfile):
|
||||
"""Returns True if the given file is an APK and is debuggable
|
||||
|
||||
:param apkfile: full path to the apk to check"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue