From 795bbe31e3a16029ff4f6f8391f625a802b0ca58 Mon Sep 17 00:00:00 2001 From: Haibo Lin Date: Aug 17 2021 06:23:43 +0000 Subject: Fix formatting Signed-off-by: Haibo Lin --- diff --git a/pungi/gather.py b/pungi/gather.py index 3411e0c..a77ed6b 100644 --- a/pungi/gather.py +++ b/pungi/gather.py @@ -35,7 +35,7 @@ from pungi.wrappers.createrepo import CreaterepoWrapper class ReentrantYumLock(object): - """ A lock that can be acquired multiple times by the same process. """ + """A lock that can be acquired multiple times by the same process.""" def __init__(self, lock, log): self.lock = lock @@ -60,7 +60,7 @@ class ReentrantYumLock(object): def yumlocked(method): - """ A locking decorator. """ + """A locking decorator.""" def wrapper(self, *args, **kwargs): with self.yumlock: