Skip to content

Commit

Permalink
unittest2 is not neccessary for python3 (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgajdos committed Jun 2, 2020
1 parent 113d240 commit 5f98bac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bibtexparser/tests/test_crossref_resolving.py
@@ -1,4 +1,7 @@
import unittest2 as unittest
try:
import unittest2 as unittest
except ImportError:
import unittest
from bibtexparser.bibdatabase import BibDatabase
from bibtexparser.bparser import BibTexParser

Expand Down

0 comments on commit 5f98bac

Please sign in to comment.