From 6ff6dc07d8311121ac520c717127bf2da26d4f7d Mon Sep 17 00:00:00 2001 From: iou1name Date: Tue, 5 Nov 2019 07:58:20 -0500 Subject: [PATCH] bugfix: missing import statement --- modules/currency.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/currency.py b/modules/currency.py index 92e8585..0c2423d 100755 --- a/modules/currency.py +++ b/modules/currency.py @@ -5,6 +5,7 @@ Other crypto coins to be added someday. """ import requests +import config from module import commands, example CUR_URI = "https://v3.exchangerate-api.com/bulk/{API_KEY}/{CUR_FROM}"