From daf4e6f63244fb936c81b8a67b6642df691076ce Mon Sep 17 00:00:00 2001 From: Daan Koning Date: Mon, 23 Jan 2023 14:02:15 +0100 Subject: [PATCH] Pull out logic.py into new directory --- main.py | 2 +- logic.py => src/logic.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename logic.py => src/logic.py (100%) diff --git a/main.py b/main.py index db68ef9..0ae0989 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ The tool fetches the odds from The Odds API (https://the-odds-api.com/) and compares the odds at different bookmakers to each other in order to determine whether there are profitable and risk-free bets available.""" -from logic import get_arbitrage_opportunities +from src.logic import get_arbitrage_opportunities import os import argparse from dotenv import load_dotenv diff --git a/logic.py b/src/logic.py similarity index 100% rename from logic.py rename to src/logic.py