Code Monkey home page Code Monkey logo

Comments (3)

marioland avatar marioland commented on June 26, 2024

Workaround in pytos\common\rest_requests.py
insert
from collections import abc as collections
instead of the top line

from pytos.

Cellebyte avatar Cellebyte commented on June 26, 2024

@marioland the workaround only works when you manually patch the library.
Would be better to fix it upstream.

from pytos.

Cellebyte avatar Cellebyte commented on June 26, 2024

for the people waiting for #52 I have a working hotfix.

# <project_name>/_hotfix.py
from collections.abc import MutableMapping, Mapping
from collections import (
    ChainMap,
    namedtuple,
    OrderedDict,
    deque,
    defaultdict,
    Counter,
    UserDict,
    UserList,
    UserString,
)
from collections import abc

__all__ = [
    "ChainMap",
    "MutableMapping",
    "Mapping",
    "namedtuple",
    "OrderedDict",
    "abc",
    "deque",
    "defaultdict",
    "Counter",
    "UserDict",
    "UserList",
    "UserString",
]
# <project_name>.__init__.py
import sys
import <project_name>._hotfix as collections

sys.modules["collections"] = collections

from pytos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.