diff options
author | Philip Paquette <pcpaquette@gmail.com> | 2018-12-13 14:28:25 -0500 |
---|---|---|
committer | Philip Paquette <pcpaquette@gmail.com> | 2019-04-18 11:22:16 -0400 |
commit | 6bf4eff9344064e3d69debda4fbc1281342377a3 (patch) | |
tree | 38b91297f499e983a06de4719bf154d512935aba /diplomacy/engine | |
parent | 2a99f8ad9bf163391e2a3a76aefe7496d35c28fd (diff) |
Removed non-ascii characters in python files
Diffstat (limited to 'diplomacy/engine')
-rw-r--r-- | diplomacy/engine/map.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/diplomacy/engine/map.py b/diplomacy/engine/map.py index 71e5912..acbc089 100644 --- a/diplomacy/engine/map.py +++ b/diplomacy/engine/map.py @@ -93,7 +93,7 @@ class Map(): e.g. ['RULE_1'] - scs: Contains a list of all the supply centers in the game e.g. ['MOS', 'SEV', 'STP', 'WAR', 'BRE', 'MAR', 'PAR', 'BEL', 'BUL', 'DEN', 'GRE', 'HOL', 'NWY', ... ] - - seq: [] Contains the sequence of seasons in format 'SEASON_NAME SEASON_TYPE' + - seq: [] Contains the sequence of seasons in format 'SEASON_NAME SEASON_TYPE' e.g. ['NEWYEAR', 'SPRING MOVEMENT', 'SPRING RETREATS', 'FALL MOVEMENT', 'FALL RETREATS', 'WINTER ADJUSTMENTS'] - unclear: Contains the alias for ambiguous places @@ -1175,7 +1175,7 @@ class Map(): """ Returns the adjacency list for the site :param site: The province we want the adjacency list for :param incl_no_coast: Boolean flag that indicates to also include province without coast if it has coasts - e.g. will return ['BUL/SC', 'BUL/EC'] if False, and ['bul', 'BUL/SC', 'BUL/EC'] if True + e.g. will return ['BUL/SC', 'BUL/EC'] if False, and ['bul', 'BUL/SC', 'BUL/EC'] if True :return: A list of adjacent provinces Note: abuts are returned in mixed cases (lowercase for A only, First capital letter for F only) |