Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
fstring
  • Loading branch information
Praveensenpai authored and bbc2 committed Nov 11, 2022
1 parent cedd36d commit 718307b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dotenv/__init__.py
Expand Up @@ -23,9 +23,9 @@ def get_cli_string(
"""
command = ['dotenv']
if quote:
command.append('-q %s' % quote)
command.append(f'-q {quote}')
if path:
command.append('-f %s' % path)
command.append(f'-f {path}')
if action:
command.append(action)
if key:
Expand Down

0 comments on commit 718307b

Please sign in to comment.