-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try moving main function to __main__ module
- Loading branch information
1 parent
60ea3fc
commit fcf659b
Showing
2 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from money_in import process_payments_and_record_updates | ||
from decimal import getcontext | ||
|
||
|
||
def main(): | ||
# Set the decimal precision explicitly so that we can | ||
# be sure that it is the same regardless of where | ||
# it is run, to avoid any possible accounting errors | ||
getcontext().prec = 10 | ||
|
||
process_payments_and_record_updates() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |