From ac41ddd0e290d959d0883a289750f40f7b3849ed Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 15 Mar 2017 21:19:38 +0100 Subject: [PATCH] fix pep8 --- dotdrop/dotfile.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dotdrop/dotfile.py b/dotdrop/dotfile.py index 388a6c6..c696631 100644 --- a/dotdrop/dotfile.py +++ b/dotdrop/dotfile.py @@ -8,9 +8,12 @@ represents a dotfile in dotdrop class Dotfile: def __init__(self, key, dst, src): - self.key = key # key of dotfile in the config - self.dst = dst # where to install this dotfile - self.src = src # stored dotfile in dotdrop + # key of dotfile in the config + self.key = key + # where to install this dotfile + self.dst = dst + # stored dotfile in dotdrop + self.src = src def __str__(self): string = 'key:%s, src: %s, dst: %s' % (self.key,