Skip to content

Commit f13917d

Browse files
committed
Code cleanup
Signed-off-by: Tobias Wolf <[email protected]>
1 parent 96816a4 commit f13917d

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

.github/actions/flavors_parse/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flavors_parse
22
description: Parses the given GardenLinux flavors parameters
33
inputs:
44
flags:
5-
description: 'Flags passed to bin/flavors_parse.py'
5+
description: 'Flags passed to `gl-flavors-parse`'
66
required: true
77
flavors_matrix:
88
description: 'Generated GitHub workflow flavors matrix'

src/gardenlinux/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
# GardenLinux flavors schema for validation
24
GL_FLAVORS_SCHEMA = {
35
"type": "object",
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .parser import Parser
4+
5+
__all__ = ["Parser"]

src/gardenlinux/features/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23

34
from .parser import Parser
45

src/gardenlinux/features/cname_main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23

34
from functools import reduce
45
from os.path import basename, dirname
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .parser import Parser
4+
5+
__all__ = ["Parser"]

src/gardenlinux/flavors/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23

34
from argparse import ArgumentParser
45
from git import Git

0 commit comments

Comments
 (0)