Source code for pypeline.ext.add

# -*- coding: utf-8 -*-

# below imports enables python 2 and 3 compatible codes
# requires python-future, install by `pip install future`
from __future__ import (absolute_import, division,
                        print_function, unicode_literals)
from builtins import *


[docs]def add(x, y): """ """ def foo(): pass return x + y