Skip to content

Commit

Permalink
fix invalid jupyter notebook json
Browse files Browse the repository at this point in the history
  • Loading branch information
Jwata committed Dec 11, 2018
1 parent 05c7e60 commit 4a197ae
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
" record[frm] = -amt\n",
" record[to] = amt\n",
" transactions.append(record)\n",
" "
]
},
{
Expand Down Expand Up @@ -174,6 +175,7 @@
"class SimpleLedger():\n",
"\n",
" def __init__(self, num_accounts=10, starting_balance=100):\n",
" \n",
" self.transactions = list()\n",
" self.num_accounts = num_accounts\n",
" \n",
Expand Down Expand Up @@ -264,6 +266,7 @@
"class SimpleLedger():\n",
"\n",
" def __init__(self, num_accounts=10, starting_balance=100):\n",
" \n",
" self.transactions = list()\n",
" self.num_accounts = num_accounts\n",
" \n",
Expand Down Expand Up @@ -386,6 +389,7 @@
"class DecentralizedLedger():\n",
"\n",
" def __init__(self, *owners, num_accounts=10, starting_balance=100):\n",
" \n",
" self.transactions = list()\n",
" self.owners = owners\n",
" self.num_accounts = num_accounts\n",
Expand Down

0 comments on commit 4a197ae

Please sign in to comment.