""" copy.py """ import shutil from pydmt.api.one_source_one_target import OneSourceOneTarget [docs] class Copy(OneSourceOneTarget): [docs] def build(self): shutil.copy(self.source, self.target)
Contents: