Iterate dictionary directly (#358)

This commit is contained in:
0xMRTT 2022-09-07 17:59:30 +02:00 committed by GitHub
commit bca8119270
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -307,7 +307,7 @@ class GradienceApplication(Adw.Application):
"scrollbar_outline_color": self.rgba_from_argb(light_theme.outline),
}
for key in variable.keys():
for key in variable:
if key in self.pref_variables:
self.pref_variables[key].update_value(variable[key])