Compare commits

..

No commits in common. "fd6b92c50d711af281de4d68c22239eabb2826d7" and "e2154dd70ad9a5ef615b30a51470edbd22b0e6cc" have entirely different histories.

View File

@ -81,9 +81,6 @@ def build_table(films_by_country):
def draw_map(films_by_country, file_name="vcinema_map.svg"):
films_by_country['Germany'] += films_by_country['West Germany']
del films_by_country['West Germany']
counter = Counter(films_by_country)
countries = [k for k, v in counter.items()]
counts = [len(v) for _, v in counter.items()]