__init__ -> None
This commit is contained in:
parent
617aa98ee1
commit
c84367a486
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ ROOT = [
|
||||||
|
|
||||||
|
|
||||||
class Project:
|
class Project:
|
||||||
def __init__(self, projects):
|
def __init__(self, projects) -> None:
|
||||||
self.projects = projects
|
self.projects = projects
|
||||||
# branch
|
# branch
|
||||||
for variable in BRANCH:
|
for variable in BRANCH:
|
||||||
|
|
|
@ -11,7 +11,7 @@ SERVER_URL = [
|
||||||
|
|
||||||
|
|
||||||
class Projects:
|
class Projects:
|
||||||
def __init__(self, environment):
|
def __init__(self, environment) -> None:
|
||||||
self.environment = environment
|
self.environment = environment
|
||||||
# group, name
|
# group, name
|
||||||
for variable in GROUP_AND_NAME:
|
for variable in GROUP_AND_NAME:
|
||||||
|
|
Loading…
Reference in a new issue