create dedupe stub
This commit is contained in:
parent
57069c2b69
commit
46332e1921
13
src/layers/dedupe.py
Normal file
13
src/layers/dedupe.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from pathlib import Path
|
||||
from dir import Root
|
||||
from layer import Layer
|
||||
|
||||
|
||||
class Dedupe(Layer):
|
||||
def __init__(self, other: Root, log_path: Path):
|
||||
super().__init__(log_path, "TCD")
|
||||
self.other = other
|
||||
|
||||
|
||||
def __process(self, root: Root):
|
||||
pass
|
Loading…
Reference in New Issue
Block a user