From 414291efc4764996094202dd02474a63b0a7ae9c Mon Sep 17 00:00:00 2001 From: Tom Brown Date: Tue, 23 May 2017 16:29:57 +0200 Subject: [PATCH] plot: Minor bug in Transformer color --- pypsa/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypsa/plot.py b/pypsa/plot.py index bacad2756..e1d2c900d 100644 --- a/pypsa/plot.py +++ b/pypsa/plot.py @@ -96,7 +96,7 @@ def plot(network, margin=0.05, ax=None, basemap=True, bus_colors='b', defaults_for_branches = { 'Link': dict(color="cyan", width=2), - 'Line': dict(color="b", width=2) + 'Line': dict(color="b", width=2), 'Transformer': dict(color='green', width=2) }