fixed fp naming conventions

This commit is contained in:
Chris Pham
2018-01-18 10:58:24 -08:00
parent 666f522bf5
commit 494c76b42f

View File

@@ -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