Skip to content

Commit

Permalink
fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
FUEL4EP committed Oct 23, 2022
1 parent e5dcf8f commit 6cf120e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions graphics.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#graphics.py
# -*- coding: utf-8 -*-

# $Rev: 72 $:
# $Rev: 74 $:
# $Author: ewald $:
# $Date: 2021-06-13 13:36:51 +0200 (So, 13. Jun 2021) $:
# $Id: graphics.py 72 2021-06-13 11:36:51Z ewald $
# $Date: 2022-10-23 15:44:59 +0200 (So, 23. Okt 2022) $:
# $Id: graphics.py 74 2022-10-23 13:44:59Z ewald $

__version__ = "$Revision: 72 $"
__version__ = "$Revision: 74 $"

import pylab
from pylab import plt, DateFormatter, getp, setp
Expand Down Expand Up @@ -99,7 +99,7 @@ def my_2D_plot_of_arrays(xa, ya, title, xlabel, ylabel, *add_graphs):
fig = plt.figure()
ax = fig.add_subplot(111)

lines=ax.plot(xa, ya, 'b-o', markersize=2, color="green")
lines=ax.plot(xa, ya, 'b-o', markersize=2)

line = lines[0]

Expand Down

0 comments on commit 6cf120e

Please sign in to comment.