mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated docstrings
This commit is contained in:
parent
9a0d4d832a
commit
6283c34ec4
1 changed files with 9 additions and 19 deletions
|
@ -12,10 +12,7 @@ from slpkg.repositories import Repositories
|
|||
|
||||
|
||||
class RepoInfo(Configs): # pylint: disable=[R0902]
|
||||
|
||||
"""
|
||||
View information about repositories.
|
||||
"""
|
||||
"""View information about repositories."""
|
||||
|
||||
def __init__(self, flags: list, repository: str):
|
||||
super(Configs, self).__init__()
|
||||
|
@ -39,8 +36,7 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
('-o', '--repository'), flags)
|
||||
|
||||
def info(self) -> None:
|
||||
""" Prints information about repositories.
|
||||
"""
|
||||
"""Prints information about repositories."""
|
||||
self.load_repo_data()
|
||||
|
||||
self.view_the_title()
|
||||
|
@ -51,8 +47,7 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
self.view_the_repositories_information()
|
||||
|
||||
def load_repo_data(self) -> None:
|
||||
""" Loads repository data.
|
||||
"""
|
||||
"""Loads repository data."""
|
||||
self.dates: dict = self.repo_information()
|
||||
if self.option_for_repository:
|
||||
self.repo_data: dict = self.load_data.load(self.repository)
|
||||
|
@ -72,8 +67,7 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
return {}
|
||||
|
||||
def view_the_title(self) -> None:
|
||||
""" Prints the title.
|
||||
"""
|
||||
"""Prints the title."""
|
||||
title: str = 'repositories information:'.title()
|
||||
if self.option_for_repository:
|
||||
title: str = 'repository information:'.title()
|
||||
|
@ -83,8 +77,7 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
print('=' * (self.columns - 1))
|
||||
|
||||
def view_the_repository_information(self) -> None:
|
||||
""" Prints the repository information.
|
||||
# """
|
||||
"""Prints the repository information."""
|
||||
args: dict = {
|
||||
'repo': self.repository,
|
||||
'date': 'None',
|
||||
|
@ -106,8 +99,7 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
self.view_summary_of_all_repositories()
|
||||
|
||||
def view_the_repositories_information(self) -> None:
|
||||
""" Prints the repositories information.
|
||||
"""
|
||||
"""Prints the repositories information."""
|
||||
args: dict = {}
|
||||
for repo, conf in self.repos.repositories.items():
|
||||
args: dict = {
|
||||
|
@ -146,14 +138,12 @@ class RepoInfo(Configs): # pylint: disable=[R0902]
|
|||
f"{self.endc}{args['date']:<34}{self.yellow}{args['count']:>12}{self.endc}")
|
||||
|
||||
def view_summary_of_repository(self) -> None:
|
||||
""" Prints the repository summary.
|
||||
"""
|
||||
"""Prints the repository summary."""
|
||||
print('=' * (self.columns - 1))
|
||||
print(f"{self.grey}Total {self.total_packages} packages available from the '{self.repository}' repository.\n")
|
||||
|
||||
def view_summary_of_all_repositories(self) -> None:
|
||||
""" Prints the total summary of repositories.
|
||||
"""
|
||||
"""Prints the total summary of repositories."""
|
||||
print('=' * (self.columns - 1))
|
||||
print(f"{self.grey}Total of {self.enabled}/{len(self.repos.repositories)} "
|
||||
f"repositories are enabled with {self.total_packages} packages available.\n")
|
||||
|
|
Loading…
Reference in a new issue