File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import importlib
22import numpy as np
33import matplotlib
4- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
4+ try :
5+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
6+ except KeyError :
7+ pass
58import matplotlib .pyplot as plt
69
710import advection .advective_fluxes as flx
Original file line number Diff line number Diff line change 33import importlib
44import numpy as np
55import matplotlib
6- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
6+ try :
7+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
8+ except KeyError :
9+ pass
710import matplotlib .pyplot as plt
811
912import advection_nonuniform .advective_fluxes as flx
Original file line number Diff line number Diff line change 44
55import numpy as np
66import matplotlib
7- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ try :
8+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
9+ except KeyError :
10+ pass
811import matplotlib .pyplot as plt
912
1013import compressible .BC as BC
Original file line number Diff line number Diff line change 11from __future__ import print_function
22
33import matplotlib
4- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
4+ try :
5+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
6+ except KeyError :
7+ pass
58import matplotlib .pyplot as plt
69import numpy as np
710
Original file line number Diff line number Diff line change 22
33import importlib
44import matplotlib
5- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
5+ try :
6+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ except KeyError :
8+ pass
69import matplotlib .pyplot as plt
710import numpy as np
811
Original file line number Diff line number Diff line change 44import math
55import numpy as np
66import matplotlib
7- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ try :
8+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
9+ except KeyError :
10+ pass
811import matplotlib .pyplot as plt
912
1013import mesh .patch as patch
Original file line number Diff line number Diff line change 44
55import numpy as np
66import matplotlib
7- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ try :
8+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
9+ except KeyError :
10+ pass
811import matplotlib .pyplot as plt
912
1013import incompressible .incomp_interface as incomp_interface
Original file line number Diff line number Diff line change 44
55import numpy as np
66import matplotlib
7- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ try :
8+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
9+ except KeyError :
10+ pass
811import matplotlib .pyplot as plt
912
1013import lm_atm .LM_atm_interface as lm_interface
Original file line number Diff line number Diff line change 44
55import numpy as np
66import matplotlib
7- matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
7+ try :
8+ matplotlib .rcParams ['mpl_toolkits.legacy_colorbar' ] = False
9+ except KeyError :
10+ pass
811import matplotlib .pyplot as plt
912
1013import swe .derives as derives
You can’t perform that action at this time.
0 commit comments