mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-05 08:46:20 +01:00
Fixed typing
This commit is contained in:
parent
619b282a45
commit
4627fd89c7
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class SBoQueries:
|
|||
return location[0]
|
||||
return ''
|
||||
|
||||
def sources(self) -> str:
|
||||
def sources(self) -> list:
|
||||
""" Returns the source of a slackbuild. """
|
||||
source, source64 = self.session.query(
|
||||
SBoTable.download, SBoTable.download64).filter(
|
||||
|
@ -78,7 +78,7 @@ class SBoQueries:
|
|||
return version[0]
|
||||
return ''
|
||||
|
||||
def checksum(self) -> str:
|
||||
def checksum(self) -> list:
|
||||
""" Returns the source checksum. """
|
||||
mds5, md5s64 = self.session.query(
|
||||
SBoTable.md5sum, SBoTable.md5sum64).filter(
|
||||
|
|
Loading…
Add table
Reference in a new issue