Giter Site home page Giter Site logo

rocket-shot's People

Contributors

christhecoolhut avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

rocket-shot's Issues

AttributeError: 'list' object has no attribute 'copy' on Pass 97/98

I am consistently getting this error on Initial Pass 97/98:

Traceback (most recent call last):
  File "rocket_shot.py", line 525, in <module>
    main()
  File "rocket_shot.py", line 479, in main
    nodes_list = get_predecessors(nodes_list)
  File "rocket_shot.py", line 181, in get_predecessors
    path_stitch = node_list.copy()
AttributeError: 'list' object has no attribute 'copy'

I assumed in your usage example where you have "python rocket_shot.py ", python is python2. If that is the case, the list.copy method wasn't introduced until python3 so you will have to use list slicing:
node_list_copy = node_list[:]
or some other method to copy it.

If I implement the [:] copy fix I end up running into an IndexError:

Traceback (most recent call last):
  File "rocket_shot.py", line 526, in <module>
    main()
  File "rocket_shot.py", line 508, in main
    nodes_list.remove(nodes_list[item_index])
IndexError: list index out of range

I've not investigated any further than that

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.