fixed fp naming conventions

This commit is contained in:
Chris Pham
2018-01-18 10:58:24 -08:00
parent 7e593097ea
commit b82a39d3bf

View File

@@ -12,9 +12,9 @@ import time
##################################### #####################################
# Constants # Constants
##################################### #####################################
fp = open('key', 'w') file_pointer = open('key', 'w')
_KEY = fp.read().rstrip() _KEY = file_pointer.read().rstrip()
fp.close() file_pointer.close()
# 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