More line length enforcing

This commit is contained in:
Nex 2022-08-13 18:24:11 +02:00
parent 82a60ee07c
commit c9dd3af278

View File

@ -29,9 +29,18 @@ class Packages(BugReportModule):
records = []
timestamps = [
{"event": "package_install", "timestamp": record["timestamp"]},
{"event": "package_first_install", "timestamp": record["first_install_time"]},
{"event": "package_last_update", "timestamp": record["last_update_time"]},
{
"event": "package_install",
"timestamp": record["timestamp"]
},
{
"event": "package_first_install",
"timestamp": record["first_install_time"]
},
{
"event": "package_last_update",
"timestamp": record["last_update_time"]
},
]
for timestamp in timestamps: