diff --git a/src/transaction_builder_methods.py b/src/transaction_builder_methods.py index db914d9..7a10356 100644 --- a/src/transaction_builder_methods.py +++ b/src/transaction_builder_methods.py @@ -241,13 +241,12 @@ def get_most_recent_line(self, member_name=None): raise Exception('No lines have been added. The {} method applies to the most recent line. To use this function, first add a line.'.format(member_name)) return line[-1] - def create(self): + def create(self, include=None): """ Create this transaction. :return: TransactionModel """ - include = None return self.client.create_transaction(self.create_model, include) def with_line_tax_override(self, type_, reason, tax_amount, tax_date):