Skip to content

Commit

Permalink
Fix config error with emcpy_horizontal_line.py Ref (#204)
Browse files Browse the repository at this point in the history
Fix horizontal line config error. Use the correct config information in
the plot object.

I ran into this issue last week but assumed it had to be an install
issue, not a simple coding error. I'm not sure how/why this worked as
long as it did. Maybe the unrecognized variable in the plot object is ok
in python3 environments that aren't on Rocky8?

Close #203
  • Loading branch information
EdwardSafford-NOAA authored Jul 30, 2024
1 parent ab0444c commit 101d0d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def configure_plot(self):
delvars = ['type', 'schema']
for d in delvars:
new_config.pop(d, None)
self.plotobj = update_object(self.plotobj, self.config, self.logger)
self.plotobj = update_object(self.plotobj, new_config, self.logger)

return self.plotobj

Expand Down

0 comments on commit 101d0d7

Please sign in to comment.