Skip to content

Commit 718307b

Browse files
Praveensenpaibbc2
authored andcommitted
Update __init__.py
fstring
1 parent cedd36d commit 718307b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/dotenv/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def get_cli_string(
2323
"""
2424
command = ['dotenv']
2525
if quote:
26-
command.append('-q %s' % quote)
26+
command.append(f'-q {quote}')
2727
if path:
28-
command.append('-f %s' % path)
28+
command.append(f'-f {path}')
2929
if action:
3030
command.append(action)
3131
if key:

0 commit comments

Comments
 (0)