|
Re: Im doing something wrong here (python)
What does your "./Scouting/Robot" file look like normally? It's hard to just read your code and provide feedback without seeing the data format.
Also, have you looked at "pickling" your data instead of using eval and repr? Pickled data should be faster to load and more secure than eval (which is a giant security hole...). And easier to get working.
|