We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fded85 commit 9909f9aCopy full SHA for 9909f9a
tools/invoice.py tools/coins.pytools/invoice.py renamed to tools/coins.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python
2
-"""Calculates an Invoice for an AS Product.
+"""Calculates Coin charges for an AS Product.
3
"""
4
import argparse
5
from decimal import Decimal
@@ -183,7 +183,8 @@ def _calculate_adjusted_coins(total_coins: Decimal,
183
184
# Parse command line arguments
185
parser = argparse.ArgumentParser(
186
- description="Calculates a Product's Invoice (actual and predicted)"
+ prog="coins",
187
+ description="Calculates a Product's Coin Charges (actual and predicted)"
188
)
189
parser.add_argument('product', type=str, help='The Product UUID')
190
args: argparse.Namespace = parser.parse_args()
0 commit comments