File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
- <addon id =" script.module.xbmcswift2" name =" xbmcswift2" provider-name =" Jonathan Beluch (jbel), enen92" version =" 19.0.6 " >
1
+ <addon id =" script.module.xbmcswift2" name =" xbmcswift2" provider-name =" Jonathan Beluch (jbel), enen92" version =" 19.0.7 " >
2
2
<requires >
3
3
<import addon =" xbmc.python" version =" 3.0.0" />
4
4
</requires >
9
9
<license >GPL-3.0</license >
10
10
<summary lang =" en_GB" >xbmcswift2 is a small framework to ease development of KODI addons.</summary >
11
11
<description lang =" en_GB" >xbmcswift2 is a small framework to ease development of KODI addons.</description >
12
- <news >Add container.refresh </news >
12
+ <news >Fixes for python 3.10 - move collections.MutableMapping to collections.abc.MutableMapping </news >
13
13
<assets >
14
14
<icon >icon.png</icon >
15
15
</assets >
Original file line number Diff line number Diff line change 1
1
CHANGES
2
2
=======
3
+ Version 19.0.7 (23/11/2021)
4
+ -------------
5
+ - Fixes for python 3.10 - move collections.MutableMapping to collections.abc.MutableMapping
6
+
3
7
Version 19.0.6 (3/10/2021)
4
8
-------------
5
9
- Add plugin.container_refresh (builtin Container.Refresh)
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def raw_dict(self):
107
107
raise NotImplementedError
108
108
109
109
110
- class _Storage (collections .MutableMapping , _PersistentDictMixin ):
110
+ class _Storage (collections .abc . MutableMapping , _PersistentDictMixin ):
111
111
'''Storage that acts like a dict but also can persist to disk.
112
112
113
113
:param filename: An absolute filepath to reprsent the storage on disk. The
@@ -146,7 +146,7 @@ def raw_dict(self):
146
146
'''Returns the wrapped dict'''
147
147
return self ._items
148
148
149
- initial_update = collections .MutableMapping .update
149
+ initial_update = collections .abc . MutableMapping .update
150
150
151
151
def clear (self ):
152
152
super (_Storage , self ).clear ()
You can’t perform that action at this time.
0 commit comments