FW

Results 15 issues of FW

```python import itertools nested_list1 = ["s", "r", [32, [32], 3]] flattened_list1 = list(itertools.chain.from_iterable(nested_list1)) print(flattened_list1) nested_list2 = [1, [1, 1, 3, [224, 4], []], [], [2, [23]]] flattened_list2 = list(itertools.chain.from_iterable(nested_list2)) print(flattened_list2)...

Before autopep8 (aggressive mode) ```python 1+2-3*4/5//6%7**8 ``` After: ```python 1 + 2 - 3 * 4 / 5 // 6 % 7**8 ``` Expected outcome: ```python 1 + 2 -...

### Environment - Python: 3.7.4 - pyodbc: 4.0.27 - OS: win10 64bit - DB: SQLITE and MSSQL - driver: sqliteodbc_w64.exe from [here](http://www.ch-werner.de/sqliteodbc/) ### Issue When trying to unpickle a result...

Currently, gameinfo.map_ramps contains vision blockers because the current ramp point condition `self.placement_grid[(x, y)] == 0 and self.pathing_grid[(x, y)] == 0` is also true for them. I think it is easier...

In `unit.py` we currently only take `_weapons` directly from the unit's type data. With `_weapons`, we then calculate `can_attack`, `can_attack_air`, `can_attack_ground`, `ground_dps`, `air_dps`, `ground_range` , `air_range` and `bonus_damage` for every...

When you start a game as a human player vs a bot, the human player has to be player 1. This will not work: ```python sc2.run_game( sc2.maps.get("AbyssalReefLE"), [Bot(sc2.Race.Terran, microbot()),Human(sc2.Race.Protoss)], realtime=True...

documentation

Fake weapon property in unit creation for battle cruisers

enhancement

On the map StasisLE, there is an area where air units cant go. As far as I can see, there is no way to get the information about where air...

![resize](https://cloud.githubusercontent.com/assets/20489521/25771007/ed2fee26-3244-11e7-91dd-9b77ef3bd1d6.jpg) When I zoom in to code, the guide is not resized. Please add this or at least an option to resize it on zoom in, so that the guide...

enhancement

It would be neat to have the options to toggle the indent guides on and off ,switch between dotted and solid and choose a color via the menu. Can you...

enhancement