16 lines
407 B
Python
16 lines
407 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2020 Red Hat
|
|
# GNU General Public License v3.0+
|
|
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
class FactDiffBase:
|
|
def __init__(self, task_args, task_vars, debug):
|
|
self._debug = debug
|
|
self._task_args = task_args
|
|
self._task_vars = task_vars
|