Skip to content

Commit

Permalink
fix ups for pep8 1.6 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel committed Feb 26, 2015
1 parent cb77da3 commit 72da41e
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions speedtest_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@
# License for the specific language governing permissions and limitations
# under the License.

__version__ = '0.3.2'

# Some global variables we use
user_agent = 'speedtest-cli/%s' % __version__
source = None
shutdown_event = None

import os
import re
import sys
Expand All @@ -31,6 +24,13 @@
import timeit
import threading

__version__ = '0.3.2'

# Some global variables we use
user_agent = 'speedtest-cli/%s' % __version__
source = None
shutdown_event = None

# Used for bound_interface
socket_socket = socket.socket

Expand Down Expand Up @@ -164,9 +164,10 @@ def distance(origin, destination):

dlat = math.radians(lat2 - lat1)
dlon = math.radians(lon2 - lon1)
a = (math.sin(dlat / 2) * math.sin(dlat / 2) + math.cos(math.radians(lat1))
* math.cos(math.radians(lat2)) * math.sin(dlon / 2)
* math.sin(dlon / 2))
a = (math.sin(dlat / 2) * math.sin(dlat / 2) +
math.cos(math.radians(lat1)) *
math.cos(math.radians(lat2)) * math.sin(dlon / 2) *
math.sin(dlon / 2))
c = 2 * math.atan2(math.sqrt(a), math.sqrt(1 - a))
d = radius * c

Expand Down

0 comments on commit 72da41e

Please sign in to comment.