From e70a199d69cbbdd53f46ff6014b5368a6c7e4472 Mon Sep 17 00:00:00 2001 From: schroeji Date: Fri, 25 Sep 2015 23:06:38 +0200 Subject: [PATCH] Removed indentation in docstring. --- i3pystatus/updates/yaourt.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/i3pystatus/updates/yaourt.py b/i3pystatus/updates/yaourt.py index 699c466..3738ff6 100644 --- a/i3pystatus/updates/yaourt.py +++ b/i3pystatus/updates/yaourt.py @@ -9,15 +9,13 @@ class Yaourt(Backend): By default it will only count aur packages. Thus it can be used with the pacman backend like this: from i3pystatus.updates import pacman, yaourt - status.register("updates", - backends = [pacman.Pacman(), yaourt.Yaourt()]) + status.register("updates", backends = [pacman.Pacman(), yaourt.Yaourt()]) If you want to count both pacman and aur packages with this module you can set the variable count_only_aur = False like this: from i3pystatus.updates import yaourt - status.register("updates", - backends = [yaourt.Yaourt(False)]) + status.register("updates", backends = [yaourt.Yaourt(False)]) """ def __init__(self, aur_only=True):