From 14131f50f97938f4ef9f9ab5ae307f6d7bc1607f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Murta?= Date: Sun, 23 Apr 2023 00:00:45 +0100 Subject: [PATCH] [Refactor] Rename the PostgreSQL file --- pfbudget/core/manager.py | 2 +- pfbudget/db/{client.py => postgresql.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pfbudget/db/{client.py => postgresql.py} (100%) diff --git a/pfbudget/core/manager.py b/pfbudget/core/manager.py index d02b3be..d43ff43 100644 --- a/pfbudget/core/manager.py +++ b/pfbudget/core/manager.py @@ -4,7 +4,7 @@ import pickle import webbrowser from pfbudget.common.types import Operation -from pfbudget.db.client import DbClient +from pfbudget.db.postgresql import DbClient from pfbudget.db.model import ( Bank, BankTransaction, diff --git a/pfbudget/db/client.py b/pfbudget/db/postgresql.py similarity index 100% rename from pfbudget/db/client.py rename to pfbudget/db/postgresql.py