Skip to content

Commit

Permalink
Move src/tablib/packages/dbfpy to src/tablib/_vendor/dbfpy (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 30, 2023
1 parent 8e2004c commit 9ef5584
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/tablib/formats/_dbf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import os
import tempfile

from ..packages.dbfpy import dbf, dbfnew
from ..packages.dbfpy import record as dbfrecord
from .._vendor.dbfpy import dbf, dbfnew
from .._vendor.dbfpy import record as dbfrecord


class DBFFormat:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_tablib_dbfpy_packages_fields.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python
"""Tests for tablib.packages.dbfpy."""
"""Tests for tablib._vendor.dbfpy."""

import unittest

from tablib.packages.dbfpy import fields
from tablib._vendor.dbfpy import fields


class DbfFieldDefTestCompareCase(unittest.TestCase):
Expand Down
4 changes: 2 additions & 2 deletions tests/test_tablib_dbfpy_packages_utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python
"""Tests for tablib.packages.dbfpy."""
"""Tests for tablib._vendor.dbfpy."""

import datetime as dt
import unittest

from tablib.packages.dbfpy import utils
from tablib._vendor.dbfpy import utils


class UtilsUnzfillTestCase(unittest.TestCase):
Expand Down

0 comments on commit 9ef5584

Please sign in to comment.