Skip to content

Commit

Permalink
remote: fix linter complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Mar 31, 2022
1 parent f004ef9 commit 57e8963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dvc/commands/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def run(self):
class CmdRemoteList(CmdRemote):
def run(self):
conf = self.config.read(self.args.level)
for name, conf in conf["remote"].items():
ui.write(name, conf["url"], sep="\t")
for name, conf_val in conf["remote"].items():
ui.write(name, conf_val["url"], sep="\t")
return 0


Expand Down

0 comments on commit 57e8963

Please sign in to comment.