Giter VIP home page Giter VIP logo

Comments (4)

rodrigc avatar rodrigc commented on August 17, 2024

@exarkun I tried to change the code to list(filter()) but then got this error:

Traceback (most recent call last):
  File "/Users/crodrigues/kubetop/src/kubetop/test/test_textrenderer.py", line 226, in test_render_several
    in _render_pods(pods, pod_usage, nodes).splitlines()
  File "/Users/crodrigues/kubetop/src/kubetop/_textrenderer.py", line 296, in _render_pods
    in sorted(pod_usage, key=_pod_stats, reverse=True)
  File "/Users/crodrigues/kubetop/src/kubetop/_textrenderer.py", line 313, in _pod_stats
    ), 0,
  File "/Users/crodrigues/kubetop/src/kubetop/_textrenderer.py", line 379, in parse_cpu
    return parse_k8s_resource(s, default_scale=1000)
  File "/Users/crodrigues/kubetop/src/kubetop/_textrenderer.py", line 389, in parse_k8s_resource
    scale = suffix_scale(suffix)
  File "/Users/crodrigues/kubetop/src/kubetop/_textrenderer.py", line 410, in suffix_scale
    }[suffix]
builtins.TypeError: unhashable type: 'list'

from kubetop.

exarkun avatar exarkun commented on August 17, 2024

Maybe this could just be:

u"".join(x for x in seq if pred(x))

This seems to work on both Python 2 and Python 3.

from kubetop.

exarkun avatar exarkun commented on August 17, 2024

(Note to anyone not sure: filter tries to return the same type as the sequence passed to it; list comprehension and generation expression don't have this same feature so the u"".join is needed to get the data back to a unicode string)

from kubetop.

rodrigc avatar rodrigc commented on August 17, 2024

@exarkun OK, I updated the patch as per your example. Please review.

from kubetop.

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.