Tidy up.
This commit is contained in:
parent
2f3578c989
commit
7dee55fa17
3 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
import logging
|
import logging
|
||||||
from datetime import datetime, date, timedelta
|
from datetime import date, datetime, timedelta
|
||||||
|
|
||||||
|
|
||||||
def fetch(series, source, output, invert: bool, quantize: int, fmt) -> str:
|
def fetch(series, source, output, invert: bool, quantize: int, fmt) -> str:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
""" ISO 4217 Currency data
|
"""
|
||||||
|
ISO 4217 Currency data
|
||||||
|
|
||||||
Provides `ISO 4217 <https://www.iso.org/iso-4217-currency-codes.html>`_
|
Provides `ISO 4217 <https://www.iso.org/iso-4217-currency-codes.html>`_
|
||||||
currency data in a ready-to-use format, indexed by currency code. Historical
|
currency data in a ready-to-use format, indexed by currency code. Historical
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import csv
|
import csv
|
||||||
import dataclasses
|
import dataclasses
|
||||||
from datetime import datetime, timedelta
|
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
from datetime import datetime, timedelta
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
Loading…
Add table
Reference in a new issue