Skip to content

Commit

Permalink
version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
russfeld committed Mar 4, 2021
1 parent a500c74 commit a92a48f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 44 deletions.
Binary file removed dist/cc410-0.1.0.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/cc410-0.1.1.tar.gz
Binary file not shown.
20 changes: 2 additions & 18 deletions docs/register/CardTransactionResult.html
Expand Up @@ -52,15 +52,7 @@ <h1 class="title">Module <code>cc410.register.CardTransactionResult</code></h1>
Returns:
string description
&#34;&#34;&#34;
return str(self.value)

def __repr__(self) -&gt; str:
&#34;&#34;&#34;String representation of the result.

Returns:
string description
&#34;&#34;&#34;
return str(self)</code></pre>
return str(self.value)</code></pre>
</details>
</section>
<section>
Expand Down Expand Up @@ -96,15 +88,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
Returns:
string description
&#34;&#34;&#34;
return str(self.value)

def __repr__(self) -&gt; str:
&#34;&#34;&#34;String representation of the result.

Returns:
string description
&#34;&#34;&#34;
return str(self)</code></pre>
return str(self.value)</code></pre>
</details>
<h3>Ancestors</h3>
<ul class="hlist">
Expand Down
34 changes: 9 additions & 25 deletions docs/register/CashDenomination.html
Expand Up @@ -53,31 +53,23 @@ <h1 class="title">Module <code>cc410.register.CashDenomination</code></h1>
FIFTY_DOLLAR_BILL = (&#34;$50 Bill&#34;, 50.0)
HUNDRED_DOLLAR_BILL = (&#34;$100 Bill&#34;, 100.0)

def __init__(self, description, amount) -&gt; None:
def __init__(self, description: str, amount: float) -&gt; None:
&#34;&#34;&#34;Constructor.

Args:
description: the description of the denomination
amount: the amount it represents
&#34;&#34;&#34;
self.description = description
self.amount = amount
self.description: str = description
self.amount: float = amount

def __str__(self) -&gt; str:
&#34;&#34;&#34;String description of the denomination.

Returns:
string description
&#34;&#34;&#34;
return str(self.description)

def __repr__(self) -&gt; str:
&#34;&#34;&#34;String representation of the denomination.

Returns:
string description
&#34;&#34;&#34;
return str(self)</code></pre>
return str(self.description)</code></pre>
</details>
</section>
<section>
Expand All @@ -91,7 +83,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<dl>
<dt id="cc410.register.CashDenomination.CashDenomination"><code class="flex name class">
<span>class <span class="ident">CashDenomination</span></span>
<span>(</span><span>description, amount)</span>
<span>(</span><span>description: str, amount: float)</span>
</code></dt>
<dd>
<div class="desc"><p>Enumeration of cash denomination values.</p>
Expand Down Expand Up @@ -122,31 +114,23 @@ <h2 id="args">Args</h2>
FIFTY_DOLLAR_BILL = (&#34;$50 Bill&#34;, 50.0)
HUNDRED_DOLLAR_BILL = (&#34;$100 Bill&#34;, 100.0)

def __init__(self, description, amount) -&gt; None:
def __init__(self, description: str, amount: float) -&gt; None:
&#34;&#34;&#34;Constructor.

Args:
description: the description of the denomination
amount: the amount it represents
&#34;&#34;&#34;
self.description = description
self.amount = amount
self.description: str = description
self.amount: float = amount

def __str__(self) -&gt; str:
&#34;&#34;&#34;String description of the denomination.

Returns:
string description
&#34;&#34;&#34;
return str(self.description)

def __repr__(self) -&gt; str:
&#34;&#34;&#34;String representation of the denomination.

Returns:
string description
&#34;&#34;&#34;
return str(self)</code></pre>
return str(self.description)</code></pre>
</details>
<h3>Ancestors</h3>
<ul class="hlist">
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = cc410
version = 0.1.0
version = 0.1.1
author = Russell Feldhausen
author_email = russfeld@ksu.edu
description = CC 410 Class Package
Expand Down

0 comments on commit a92a48f

Please sign in to comment.