mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 06:52:39 +03:00
Fix pylint warnings
This commit is contained in:
parent
ff44488a42
commit
a872d8688d
6 changed files with 12 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
class FDroidException(Exception):
|
||||
def __init__(self, value=None, detail=None):
|
||||
super().__init__()
|
||||
self.value = value
|
||||
self.detail = detail
|
||||
|
||||
|
@ -23,6 +24,7 @@ class FDroidException(Exception):
|
|||
|
||||
class MetaDataException(Exception):
|
||||
def __init__(self, value):
|
||||
super().__init__()
|
||||
self.value = value
|
||||
|
||||
def __str__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue