Skip to content

Commit ddad38f

Browse files
committed
fix(astyle.py): add some missing f-string
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 7e12c80 commit ddad38f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CI/astyle/astyle.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def astyle():
165165
g0.add_argument(
166166
"-g",
167167
"--gitdiff",
168-
help="Use changes files from git default branch. Default: {git_branch}",
168+
help=f"Use changes files from git default branch. Default: {git_branch}",
169169
action="store_true",
170170
)
171171
g0.add_argument(
@@ -178,7 +178,7 @@ def astyle():
178178
"-i",
179179
"--ignore",
180180
metavar="<ignore file>",
181-
help="File containing path to ignore. Default: {ignore_path}",
181+
help=f"File containing path to ignore. Default: {ignore_path}",
182182
)
183183
parser.add_argument(
184184
"-p", "--path", metavar="<astyle install path>", help="Astyle installation path"
@@ -187,7 +187,7 @@ def astyle():
187187
"-r",
188188
"--root",
189189
metavar="<source root path>",
190-
help="Source root path to use. Default: {src_path}",
190+
help=f"Source root path to use. Default: {src_path}",
191191
)
192192
args = parser.parse_args()
193193

0 commit comments

Comments
 (0)