Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
baseplate-admin committed Feb 22, 2024
1 parent b01fba1 commit 5cf4b36
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions django_ltree/apps.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import importlib

from django.apps import AppConfig


def register_pathfield():
# Register field checks, lookups and functions
importlib.import_module("django_ltree.checks")
importlib.import_module("django_ltree.lookups")
importlib.import_module("django_ltree.functions")
from . import checks as checks
from . import lookups as lookups
from . import functions as functions


class DjangoLtreeConfig(AppConfig):
Expand Down

0 comments on commit 5cf4b36

Please sign in to comment.