mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
Fixed type hinting
This commit is contained in:
parent
bebf926c1e
commit
3fee772815
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class SBoQueries(Configs):
|
||||||
""" Returns a dictionary with the repository data. """
|
""" Returns a dictionary with the repository data. """
|
||||||
repository_data: tuple = self.session.query(self.sbo_table).all()
|
repository_data: tuple = self.session.query(self.sbo_table).all()
|
||||||
|
|
||||||
repos_dict: dict[str] = {
|
repos_dict: dict = {
|
||||||
data.name: {'location': data.location,
|
data.name: {'location': data.location,
|
||||||
'files': data.files,
|
'files': data.files,
|
||||||
'version': data.version,
|
'version': data.version,
|
||||||
|
|
Loading…
Reference in a new issue