diff options
| author | Max Bringemo <maxbr167@student.liu.se> | 2020-12-03 21:23:55 +0100 |
|---|---|---|
| committer | Max Bringemo <maxbr167@student.liu.se> | 2020-12-03 21:23:55 +0100 |
| commit | 1564409435d10a67b4a880d73a21df35b9be2787 (patch) | |
| tree | 4963e9f03fde0c79df93f421c6b5e83e5e99e269 | |
| parent | 0d0f1221d854be9210b1601460608e8c5f236204 (diff) | |
| download | tdde25-1564409435d10a67b4a880d73a21df35b9be2787.tar.gz | |
now according to PEP8
| -rw-r--r-- | store.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -8,7 +8,6 @@ class Node: self.lng = float(lng) self.neighbours = [] - def coord_tuple(self): return self.lat, self.lng @@ -55,4 +54,3 @@ def select_nodes_in_rectangle(nodes, min_lat, max_lat, min_long, max_long): return [node for node in nodes.values() if min_lat <= node.lat <= max_lat and min_long <= node.lng <= max_long] - |
