chkbit/chkbit/input_item.py
2024-01-03 18:33:36 +01:00

10 lines
228 B
Python

from __future__ import annotations
from typing import Optional
import chkbit
class InputItem:
def __init__(self, path: str, *, ignore: Optional[chkbit.Ignore] = None):
self.path = path
self.ignore = ignore