question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

  • *sorted(…) results in invalid syntax
  • print('{} = '.format(f), end=' ') gives invalid syntax (line 231, kicost.py) on th e"=" symbol for end => replaced with print '{} = '.format(f),
from urllib.parse import quote_plus as urlquote
ImportError: No module named parse

Replace with

try:
    from urllib.parse import quote_plus as urlquote
except ImportError:
     from urllib import quote_plus as urlquote

from .dist_local_template import dist_local_templates replace with from .dist_local_template import dist_local_template

  • kicost_gui.py from .distributors import init_distributor_dic

    -> commented
    from .kicost_gui import * etc. as I am not using the gui.

dist_list.remove(d) ValueError: list.remove(x): x not in list

I had an invalid distributor in the exception list - I added a try: except: pass arround the remove.

File "kicost.py", line 215, in kicost dist_local_template.query_part_info(parts, distributor_dict, currency) TypeError: unbound method query_part_info() must be called with dist_local_template instance as first argument (got list instance instead) Stuck here.

Moved to python3:

    if len(octopart_query) == OCTOPART_MAX_PARTBYQUERY:
NameError: name 'OCTOPART_MAX_PARTBYQUERY' is not defined

My workaround: Added OCTOPART_MAX_PARTBYQUERY = 16 to head.

partinfo_kitspace.py", line 285, in get_part_info
    results = dist_octopart.query(query, apiKey)
NameError: name 'dist_octopart' is not defined

-> Stuck here (no “def dist_octopart” found)

Final solution

Rolled back to git checkout b567f40

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:15 (15 by maintainers)

github_iconTop GitHub Comments

1reaction
mdeweerdcommented, Apr 29, 2019

I think that the two horizontal bars are a good suggestion of the other currency symbols - there is no need to overload the logo/icon. I only now understand the suggestion of the € in the flat logo - I think this can be reminded in the same way by having a darker border/background to represent the € symbol.

0reactions
mdeweerdcommented, Aug 27, 2019

Hi

I made some time to work on the logo.

These are the 24x24 and 512x512 versions. I think that the 24x24 version is acceptable.

kicost_dime24 kicost_dime512

This is the SVG in a ZIP file: Kicost_Dime.zip

Read more comments on GitHub >

github_iconTop Results From Across the Web

ICON plc | Clinical Research Organisation (CRO) for Drug ...
ICON is the world's leading clinical research organisation, providing outsourced clincal development and commercialisation services to the pharmaceutical, ...
Read more >
ICON
ICON (Iowa Courses Online) is the course management system at The University of Iowa. ICON is supported within Information Technology Services.
Read more >
Icon Definition & Meaning - Merriam-Webster
The meaning of ICON is a person or thing widely admired especially for having great influence or significance in a particular sphere.
Read more >
Makers of Motorcycle Helmets, Jackets | ICON Motosports ...
Makers of Motorcycle Helmets, Jackets, Gloves, Pants, Footwear. The worlds leading street based protective motorcycle apparel brand. Ride among us.
Read more >
ICON – 3D Technology
ICON develops advanced construction technologies that advance humanity by using 3D printing robotics, software and advanced materials.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found