mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
fixed fp naming conventions
This commit is contained in:
@@ -12,9 +12,15 @@ import time
|
|||||||
#####################################
|
#####################################
|
||||||
# Constants
|
# Constants
|
||||||
#####################################
|
#####################################
|
||||||
|
<<<<<<< 666f522bf5947794d802e8cbbf221ac004fc4eed
|
||||||
fp = open('key', w)
|
fp = open('key', w)
|
||||||
_KEY = fp.read().rstrip()
|
_KEY = fp.read().rstrip()
|
||||||
fp.close()
|
fp.close()
|
||||||
|
=======
|
||||||
|
file_pointer = open('key', 'w')
|
||||||
|
_KEY = file_pointer.read().rstrip()
|
||||||
|
file_pointer.close()
|
||||||
|
>>>>>>> fixed fp naming conventions
|
||||||
|
|
||||||
# Number of pixels in half the earth's circumference at zoom = 21
|
# Number of pixels in half the earth's circumference at zoom = 21
|
||||||
_EARTHPIX = 268435456
|
_EARTHPIX = 268435456
|
||||||
|
|||||||
Reference in New Issue
Block a user