diff --git a/bob/devtools/changelog.py b/bob/devtools/changelog.py
index 2e4840ee9a4ee9fe380ac5a0f22e14a76c5020c6..d5b20692e2c9e351d6b54b801fa50cc153dfd787 100644
--- a/bob/devtools/changelog.py
+++ b/bob/devtools/changelog.py
@@ -60,7 +60,9 @@ def get_last_tag(package):
 
     # according to the Gitlab API documentation, tags are sorted from the last
     # updated to the first, by default - no need to do further sorting!
-    tag_list = package.tags.list(page=1, per_page=1) # Silence userWarning on list()
+    tag_list = package.tags.list(
+        page=1, per_page=1
+    )  # Silence userWarning on list()
 
     if tag_list:
         # there are tags, use these
@@ -86,7 +88,9 @@ def get_last_tag_date(package):
 
     # according to the Gitlab API documentation, tags are sorted from the last
     # updated to the first, by default - no need to do further sorting!
-    tag_list = package.tags.list(page=1, per_page=1) # Silence userWarning on list()
+    tag_list = package.tags.list(
+        page=1, per_page=1
+    )  # Silence userWarning on list()
 
     if tag_list:
         # there are tags, use these