Skip to content

Commit 4d8ab09

Browse files
No need to set default for max_depth
1 parent 7d86186 commit 4d8ab09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

django_postgresql_dag/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def partners_with_self(self):
186186
children__in=self.children.all()
187187
).distinct()
188188

189-
def path_raw(self, ending_node, directional=True, max_depth=20, **kwargs):
189+
def path_raw(self, ending_node, directional=True, **kwargs):
190190
"""
191191
Returns shortest path from self to ending node, optionally in either
192192
direction. The resulting RawQueryset is sorted from root-side, toward

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
from setuptools import setup
55

6-
version = '0.1.3'
6+
version = '0.1.4'
77

88
classifiers = [
99
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)