From b82a39d3bf666abd8ed38839d6c5730b09e6ad04 Mon Sep 17 00:00:00 2001 From: Chris Pham Date: Thu, 18 Jan 2018 10:58:24 -0800 Subject: [PATCH] fixed fp naming conventions --- ground_station/resources/core/mapping.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ground_station/resources/core/mapping.py b/ground_station/resources/core/mapping.py index 48fb7a4..3c05b90 100644 --- a/ground_station/resources/core/mapping.py +++ b/ground_station/resources/core/mapping.py @@ -12,9 +12,9 @@ import time ##################################### # Constants ##################################### -fp = open('key', 'w') -_KEY = fp.read().rstrip() -fp.close() +file_pointer = open('key', 'w') +_KEY = file_pointer.read().rstrip() +file_pointer.close() # Number of pixels in half the earth's circumference at zoom = 21 _EARTHPIX = 268435456