__init__ -> None

This commit is contained in:
Marc Beninca 2024-06-08 23:59:45 +02:00
parent 617aa98ee1
commit c84367a486
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ ROOT = [
class Project:
def __init__(self, projects):
def __init__(self, projects) -> None:
self.projects = projects
# branch
for variable in BRANCH:

View file

@ -11,7 +11,7 @@ SERVER_URL = [
class Projects:
def __init__(self, environment):
def __init__(self, environment) -> None:
self.environment = environment
# group, name
for variable in GROUP_AND_NAME: