diff options
author | Aarni Koskela <akx@iki.fi> | 2022-05-10 10:51:08 +0300 |
---|---|---|
committer | Aarni Koskela <akx@iki.fi> | 2022-05-10 12:42:16 +0200 |
commit | 53a74f1c1567b28e6e23bb1ab48ca3a0f888d307 (patch) | |
tree | c27d3409e45fbd3317212bee798b57cfd3b54eaf /babel/localedata.py | |
parent | 128322c6b9ad23f4c1cd0b3996dd00fc48306750 (diff) | |
download | babel-53a74f1c1567b28e6e23bb1ab48ca3a0f888d307.tar.gz |
Fix up some Python2-isms using pyupgrade
Diffstat (limited to 'babel/localedata.py')
-rw-r--r-- | babel/localedata.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/babel/localedata.py b/babel/localedata.py index 9461e84..14e6bcd 100644 --- a/babel/localedata.py +++ b/babel/localedata.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ babel.localedata ~~~~~~~~~~~~~~~~ @@ -184,7 +183,7 @@ def merge(dict1, dict2): dict1[key] = val1 -class Alias(object): +class Alias: """Representation of an alias in the locale data. An alias is a value that refers to some other part of the locale data, |