mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
Version 1.0.3
Fix fonts mixed-content Fixed deprecation error collections.MutableMapping (python 3.10)
This commit is contained in:
parent
a0abbede49
commit
c1e4e092a7
@ -23,7 +23,8 @@ import inspect
|
||||
import copy
|
||||
|
||||
from abc import ABCMeta
|
||||
from collections import MutableMapping, namedtuple
|
||||
from collections import namedtuple
|
||||
from collections.abc import MutableMapping
|
||||
|
||||
|
||||
class BaseMeta(ABCMeta):
|
||||
|
@ -332,5 +332,5 @@ In Data Science and Advanced Analytics (DSAA),
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<link href='http://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
|
||||
<link href='//fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
|
||||
</html>
|
||||
|
@ -14,7 +14,7 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
from . import models, __version__
|
||||
from collections import MutableMapping
|
||||
from collections.abc import MutableMapping
|
||||
import pprint
|
||||
import pdb
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user