fix: issue with python 3.8

This commit is contained in:
ziirish 2020-03-29 22:27:19 +02:00
parent 6f4321a9d4
commit 3bfc6c653d
No known key found for this signature in database
GPG key ID: 72DB229A64B54E46

View file

@ -1607,7 +1607,7 @@ class Config(File):
self.options.clear()
del self.options
self.options = OrderedDict()
for key in self.types.keys():
for key in list(self.types.keys()):
del self.types[key]
self.types[key] = OrderedDict()