Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
11 lines
186 B
Python
Executable File
11 lines
186 B
Python
Executable File
from django.db.models.manager import BaseManager as BManager
|
|
from django.db.models.query import QuerySet
|
|
|
|
|
|
class BaseQuerySet(QuerySet):
|
|
pass
|
|
|
|
|
|
class BaseManager(BManager):
|
|
pass
|