Skip to content

Commit

Permalink
added missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder committed Nov 16, 2023
1 parent bd9db96 commit 3b58e3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/core/test_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import pytest
import neo4j
import os
import warnings

from rel2graph.core.factories import Matcher, AttributeFactory
from rel2graph import Resource
Expand Down Expand Up @@ -48,7 +49,7 @@ def session():
# This will be raised by neo4j due to how the session is yielded
# You can ignore this as it is correctly closed
warnings.filterwarnings("ignore", category=DeprecationWarning)

# Check if custom port
try:
port = os.environ["NEO4J PORT"]
Expand Down

0 comments on commit 3b58e3c

Please sign in to comment.