brohrer / robot-brain-project

a general purpose learning agent
205 stars 46 forks source link

Clean up following decimal points. #33

Closed brohrer closed 5 years ago

brohrer commented 6 years ago

Now that becca is no longer supporting python 2, there is no need to initialize floats with decimal points to distinguish them from integers. There are a lot of following decimals that are only clutter now.

For example new_list = [0.] should be new_list = [0]