mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 00:02:28 +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
|
import copy
|
||||||
|
|
||||||
from abc import ABCMeta
|
from abc import ABCMeta
|
||||||
from collections import MutableMapping, namedtuple
|
from collections import namedtuple
|
||||||
|
from collections.abc import MutableMapping
|
||||||
|
|
||||||
|
|
||||||
class BaseMeta(ABCMeta):
|
class BaseMeta(ABCMeta):
|
||||||
|
@ -332,5 +332,5 @@ In Data Science and Advanced Analytics (DSAA),
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</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>
|
</html>
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
from . import models, __version__
|
from . import models, __version__
|
||||||
from collections import MutableMapping
|
from collections.abc import MutableMapping
|
||||||
import pprint
|
import pprint
|
||||||
import pdb
|
import pdb
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user