Or module
            Or
    
              Bases: Module
Perform a logical Or operation.
It takes as input a list of data models, and returns a concatenation of them (if all are provided) otherwise it output the one that is not None.
If any input is None, it is ignored.
Table:
| x1 | x2 | Logical Or ( |) | 
|---|---|---|
| x1 | x2 | x1 + x2 | 
| x1 | None | x1 | 
| None | x2 | x2 | 
| None | None | None | 
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| **kwargs | keyword arguments | Standard keyword arguments for the module. | {} |