Remove deprecation warning for corepos.db

everything should be using the right imports now
This commit is contained in:
Lance Edgar 2021-12-30 21:47:55 -06:00
parent ae45615717
commit a6306a4882

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# pyCOREPOS -- Python Interface to CORE POS # pyCOREPOS -- Python Interface to CORE POS
# Copyright © 2018-2020 Lance Edgar # Copyright © 2018-2021 Lance Edgar
# #
# This file is part of pyCOREPOS. # This file is part of pyCOREPOS.
# #
@ -23,12 +23,3 @@
""" """
Database Interface Database Interface
""" """
from __future__ import unicode_literals, absolute_import
import warnings
warnings.warn("The `corepos.db` module is deprecated! "
"Please use `corepos.db.office_op` instead.",
DeprecationWarning)
from corepos.db.office_op import *