diff --git a/src/ahriman/__init__.py b/src/ahriman/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/__init__.py +++ b/src/ahriman/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/application/__init__.py b/src/ahriman/application/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/application/__init__.py +++ b/src/ahriman/application/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/application/ahriman.py b/src/ahriman/application/ahriman.py index 7f6b9256..437069e6 100644 --- a/src/ahriman/application/ahriman.py +++ b/src/ahriman/application/ahriman.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -73,9 +73,11 @@ def update(args: argparse.Namespace) -> None: update packages callback :param args: command line args ''' - app = Application.from_args(args) # typing workaround - log_fn = lambda line: print(line) if args.dry_run else app.logger.info(line) + def log_fn(line: str) -> None: + return print(line) if args.dry_run else app.logger.info(line) + + app = Application.from_args(args) packages = app.get_updates(args.package, args.no_aur, args.no_manual, args.no_vcs, log_fn) if args.dry_run: return @@ -128,7 +130,8 @@ if __name__ == '__main__': update_parser = subparsers.add_parser('update', description='run updates') update_parser.add_argument('package', help='filter check by packages', nargs='*') - update_parser.add_argument('--dry-run', help='just perform check for updates, same as check command', action='store_true') + update_parser.add_argument( + '--dry-run', help='just perform check for updates, same as check command', action='store_true') update_parser.add_argument('--no-aur', help='do not check for AUR updates', action='store_true') update_parser.add_argument('--no-manual', help='do not include manual updates', action='store_true') update_parser.add_argument('--no-vcs', help='do not check VCS packages', action='store_true') diff --git a/src/ahriman/application/application.py b/src/ahriman/application/application.py index 5c21fa09..a9c22ce8 100644 --- a/src/ahriman/application/application.py +++ b/src/ahriman/application/application.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -182,4 +182,4 @@ class Application: for num, level in enumerate(tree.levels()): self.logger.info(f'processing level #{num} {[package.base for package in level]}') packages = self.repository.process_build(level) - process_update(packages) \ No newline at end of file + process_update(packages) diff --git a/src/ahriman/application/lock.py b/src/ahriman/application/lock.py index f2a50c73..24e69e6c 100644 --- a/src/ahriman/application/lock.py +++ b/src/ahriman/application/lock.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -93,4 +93,4 @@ class Lock: if self.path is None: return if os.path.exists(self.path): - os.remove(self.path) \ No newline at end of file + os.remove(self.path) diff --git a/src/ahriman/core/__init__.py b/src/ahriman/core/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/__init__.py +++ b/src/ahriman/core/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/alpm/__init__.py b/src/ahriman/core/alpm/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/alpm/__init__.py +++ b/src/ahriman/core/alpm/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/alpm/pacman.py b/src/ahriman/core/alpm/pacman.py index 986dc6d4..f5eb0cf2 100644 --- a/src/ahriman/core/alpm/pacman.py +++ b/src/ahriman/core/alpm/pacman.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -49,4 +49,4 @@ class Pacman: for database in self.handle.get_syncdbs(): result.update({package.name for package in database.pkgcache}) - return list(result) \ No newline at end of file + return list(result) diff --git a/src/ahriman/core/alpm/repo.py b/src/ahriman/core/alpm/repo.py index 9c2ba319..e55350f8 100644 --- a/src/ahriman/core/alpm/repo.py +++ b/src/ahriman/core/alpm/repo.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/build_tools/__init__.py b/src/ahriman/core/build_tools/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/build_tools/__init__.py +++ b/src/ahriman/core/build_tools/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/build_tools/task.py b/src/ahriman/core/build_tools/task.py index 6174b33d..6f03c0e6 100644 --- a/src/ahriman/core/build_tools/task.py +++ b/src/ahriman/core/build_tools/task.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/configuration.py b/src/ahriman/core/configuration.py index 311ea932..be40eed3 100644 --- a/src/ahriman/core/configuration.py +++ b/src/ahriman/core/configuration.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/exceptions.py b/src/ahriman/core/exceptions.py index bf7c9bfc..44848676 100644 --- a/src/ahriman/core/exceptions.py +++ b/src/ahriman/core/exceptions.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -104,4 +104,4 @@ class SyncFailed(Exception): ''' default constructor ''' - Exception.__init__(self, 'Sync failed') \ No newline at end of file + Exception.__init__(self, 'Sync failed') diff --git a/src/ahriman/core/report/__init__.py b/src/ahriman/core/report/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/report/__init__.py +++ b/src/ahriman/core/report/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/report/html.py b/src/ahriman/core/report/html.py index e282ab61..e6a65e34 100644 --- a/src/ahriman/core/report/html.py +++ b/src/ahriman/core/report/html.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/report/report.py b/src/ahriman/core/report/report.py index 7f3dc376..eb096a18 100644 --- a/src/ahriman/core/report/report.py +++ b/src/ahriman/core/report/report.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -72,4 +72,4 @@ class Report: generate report for the specified packages :param packages: list of packages to generate report ''' - pass \ No newline at end of file + pass diff --git a/src/ahriman/core/repository.py b/src/ahriman/core/repository.py index ef66cc3c..5144b134 100644 --- a/src/ahriman/core/repository.py +++ b/src/ahriman/core/repository.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -264,4 +264,4 @@ class Repository: self.logger.exception(f'could not add package from {fn}', exc_info=True) self._clear_manual() - return result \ No newline at end of file + return result diff --git a/src/ahriman/core/sign/__init__.py b/src/ahriman/core/sign/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/sign/__init__.py +++ b/src/ahriman/core/sign/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/sign/gpg.py b/src/ahriman/core/sign/gpg.py index 35563d45..6231e5b4 100644 --- a/src/ahriman/core/sign/gpg.py +++ b/src/ahriman/core/sign/gpg.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -103,4 +103,4 @@ class GPG: ''' if SignSettings.SignRepository not in self.target: return [path] - return self.process(path, self.default_key) \ No newline at end of file + return self.process(path, self.default_key) diff --git a/src/ahriman/core/tree.py b/src/ahriman/core/tree.py index 6c928924..5593da29 100644 --- a/src/ahriman/core/tree.py +++ b/src/ahriman/core/tree.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/upload/__init__.py b/src/ahriman/core/upload/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/upload/__init__.py +++ b/src/ahriman/core/upload/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/upload/rsync.py b/src/ahriman/core/upload/rsync.py index 2b0e0849..418cd85f 100644 --- a/src/ahriman/core/upload/rsync.py +++ b/src/ahriman/core/upload/rsync.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/upload/s3.py b/src/ahriman/core/upload/s3.py index dfc733f2..7976f5a3 100644 --- a/src/ahriman/core/upload/s3.py +++ b/src/ahriman/core/upload/s3.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/upload/uploader.py b/src/ahriman/core/upload/uploader.py index 884876aa..4e3d63d6 100644 --- a/src/ahriman/core/upload/uploader.py +++ b/src/ahriman/core/upload/uploader.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/util.py b/src/ahriman/core/util.py index 0d8b88f4..2a0f810e 100644 --- a/src/ahriman/core/util.py +++ b/src/ahriman/core/util.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/watcher/__init__.py b/src/ahriman/core/watcher/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/core/watcher/__init__.py +++ b/src/ahriman/core/watcher/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/watcher/client.py b/src/ahriman/core/watcher/client.py index 9c4f5c4a..c868c36e 100644 --- a/src/ahriman/core/watcher/client.py +++ b/src/ahriman/core/watcher/client.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/watcher/watcher.py b/src/ahriman/core/watcher/watcher.py index dea88fc4..6248d267 100644 --- a/src/ahriman/core/watcher/watcher.py +++ b/src/ahriman/core/watcher/watcher.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/core/watcher/web_client.py b/src/ahriman/core/watcher/web_client.py index fbeb1df4..6fbee43f 100644 --- a/src/ahriman/core/watcher/web_client.py +++ b/src/ahriman/core/watcher/web_client.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -94,4 +94,4 @@ class WebClient(Client): response = requests.post(self._url(base), json=payload) response.raise_for_status() except: - self.logger.exception(f'could not update {base}', exc_info=True) \ No newline at end of file + self.logger.exception(f'could not update {base}', exc_info=True) diff --git a/src/ahriman/models/__init__.py b/src/ahriman/models/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/models/__init__.py +++ b/src/ahriman/models/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/models/build_status.py b/src/ahriman/models/build_status.py index 311f63e2..5002b171 100644 --- a/src/ahriman/models/build_status.py +++ b/src/ahriman/models/build_status.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/models/package.py b/src/ahriman/models/package.py index 4a3988bb..748e43ca 100644 --- a/src/ahriman/models/package.py +++ b/src/ahriman/models/package.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -62,11 +62,11 @@ class Package: :return: True in case if package base looks like VCS package and false otherwise ''' return self.base.endswith('-bzr') \ - or self.base.endswith('-csv')\ - or self.base.endswith('-darcs')\ - or self.base.endswith('-git')\ - or self.base.endswith('-hg')\ - or self.base.endswith('-svn') + or self.base.endswith('-csv')\ + or self.base.endswith('-darcs')\ + or self.base.endswith('-git')\ + or self.base.endswith('-hg')\ + or self.base.endswith('-svn') @property def web_url(self) -> str: @@ -113,7 +113,7 @@ class Package: return cls(package.base, package.version, aur_url, {package.name: os.path.basename(path)}) @classmethod - def from_aur(cls: Type[Package], name: str, aur_url: str)-> Package: + def from_aur(cls: Type[Package], name: str, aur_url: str) -> Package: ''' construct package properties from AUR page :param name: package name (either base or normal name) diff --git a/src/ahriman/models/report_settings.py b/src/ahriman/models/report_settings.py index b4abfa95..6695ab34 100644 --- a/src/ahriman/models/report_settings.py +++ b/src/ahriman/models/report_settings.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/models/repository_paths.py b/src/ahriman/models/repository_paths.py index c5d1f4c7..514aeb72 100644 --- a/src/ahriman/models/repository_paths.py +++ b/src/ahriman/models/repository_paths.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -76,4 +76,4 @@ class RepositoryPaths: os.makedirs(self.manual, mode=0o755, exist_ok=True) os.makedirs(self.packages, mode=0o755, exist_ok=True) os.makedirs(self.repository, mode=0o755, exist_ok=True) - os.makedirs(self.sources, mode=0o755, exist_ok=True) \ No newline at end of file + os.makedirs(self.sources, mode=0o755, exist_ok=True) diff --git a/src/ahriman/models/sign_settings.py b/src/ahriman/models/sign_settings.py index d70b5378..9b3d4609 100644 --- a/src/ahriman/models/sign_settings.py +++ b/src/ahriman/models/sign_settings.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -45,4 +45,4 @@ class SignSettings(Enum): return SignSettings.SignPackages elif value.lower() in ('repository', 'sign-repository'): return SignSettings.SignRepository - raise InvalidOption(value) \ No newline at end of file + raise InvalidOption(value) diff --git a/src/ahriman/models/upload_settings.py b/src/ahriman/models/upload_settings.py index 9a9484c5..87bdf473 100644 --- a/src/ahriman/models/upload_settings.py +++ b/src/ahriman/models/upload_settings.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/version.py b/src/ahriman/version.py index a50dced8..27ce34c7 100644 --- a/src/ahriman/version.py +++ b/src/ahriman/version.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/__init__.py b/src/ahriman/web/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/web/__init__.py +++ b/src/ahriman/web/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/middlewares/__init__.py b/src/ahriman/web/middlewares/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/web/middlewares/__init__.py +++ b/src/ahriman/web/middlewares/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/middlewares/exception_handler.py b/src/ahriman/web/middlewares/exception_handler.py index df6a2490..ce263af6 100644 --- a/src/ahriman/web/middlewares/exception_handler.py +++ b/src/ahriman/web/middlewares/exception_handler.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/routes.py b/src/ahriman/web/routes.py index bde993e9..480783dc 100644 --- a/src/ahriman/web/routes.py +++ b/src/ahriman/web/routes.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -46,4 +46,4 @@ def setup_routes(application: Application) -> None: application.router.add_post('/api/v1/packages', PackagesView) application.router.add_delete('/api/v1/packages/{package}', PackageView) - application.router.add_post('/api/v1/packages/{package}', PackageView) \ No newline at end of file + application.router.add_post('/api/v1/packages/{package}', PackageView) diff --git a/src/ahriman/web/views/__init__.py b/src/ahriman/web/views/__init__.py index a0f149a5..b7917f9a 100644 --- a/src/ahriman/web/views/__init__.py +++ b/src/ahriman/web/views/__init__.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/views/base.py b/src/ahriman/web/views/base.py index c6165f8c..e5f31ab3 100644 --- a/src/ahriman/web/views/base.py +++ b/src/ahriman/web/views/base.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/views/index.py b/src/ahriman/web/views/index.py index 0b9e76a0..9d2df3e9 100644 --- a/src/ahriman/web/views/index.py +++ b/src/ahriman/web/views/index.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify @@ -62,4 +62,4 @@ class IndexView(BaseView): 'packages': packages, 'repository': self.service.repository.name, 'version': version.__version__, - } \ No newline at end of file + } diff --git a/src/ahriman/web/views/package.py b/src/ahriman/web/views/package.py index dea832f2..061aa1ac 100644 --- a/src/ahriman/web/views/package.py +++ b/src/ahriman/web/views/package.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/views/packages.py b/src/ahriman/web/views/packages.py index ea1ae343..911516f0 100644 --- a/src/ahriman/web/views/packages.py +++ b/src/ahriman/web/views/packages.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify diff --git a/src/ahriman/web/web.py b/src/ahriman/web/web.py index 1ae5dc6c..0f5dae9f 100644 --- a/src/ahriman/web/web.py +++ b/src/ahriman/web/web.py @@ -1,7 +1,7 @@ # # Copyright (c) 2021 Evgenii Alekseev. # -# This file is part of ahriman +# This file is part of ahriman # (see https://github.com/arcan1s/ahriman). # # This program is free software: you can redistribute it and/or modify