Skip to content

Commit

Permalink
fix: import guid context var from context module
Browse files Browse the repository at this point in the history
  • Loading branch information
hartungstenio committed Sep 19, 2024
1 parent 0ddc21a commit 7d10c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_guid/log_filters.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from logging import Filter
from typing import TYPE_CHECKING

from django_guid.middleware import guid
from django_guid.context import guid

if TYPE_CHECKING:
from logging import LogRecord
Expand Down
2 changes: 1 addition & 1 deletion django_guid/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from django.core.signals import request_finished
from django.dispatch import receiver

from django_guid.middleware import guid
from django_guid.context import guid

logger = logging.getLogger('django_guid')

Expand Down

0 comments on commit 7d10c6e

Please sign in to comment.