Skip to content

Commit

Permalink
Releasing version 2.0.2
Browse files Browse the repository at this point in the history
Minor bug fix release for properly building conda package
  • Loading branch information
wxguy committed Jul 29, 2024
1 parent 458b7df commit 13edca2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wrfplot/wrfplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ def arg_praser():
return parser.parse_args()


def main(args=None):
def main():
args = arg_praser()
if args.list_vars:
sys.exit(arguments.list_vars())
elif args.list_cmaps:
Expand Down Expand Up @@ -195,4 +196,4 @@ def main(args=None):


if __name__ == "__main__":
main(arg_praser())
main()

0 comments on commit 13edca2

Please sign in to comment.