Skip to content

Commit 53f5bf2

Browse files
committed
format code.
1 parent b3ab391 commit 53f5bf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datajoint/expression.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,8 @@ class Union(QueryExpression):
606606
"""
607607
Union is the private DataJoint class that implements the union operator.
608608
"""
609+
__count = count()
610+
609611
@classmethod
610612
def create(cls, arg1, arg2):
611613
if inspect.isclass(arg2) and issubclass(arg2, QueryExpression):
@@ -627,7 +629,6 @@ def create(cls, arg1, arg2):
627629
result._support = [arg1, arg2]
628630
return result
629631

630-
__count = count()
631632

632633
def make_sql(self):
633634
arg1, arg2 = self._support

0 commit comments

Comments
 (0)