Added CLI logic to generate pipes

This commit is contained in:
2022-05-22 18:48:33 +02:00
parent d1bb266d49
commit d694c408c0
6 changed files with 50 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ sh-edraft Common Python library
"""
__title__ = 'cpl_core.pipes'
__title__ = 'cpl_core.pipe'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 - 2022 sh-edraft.de'

View File

@@ -1,4 +1,4 @@
from cpl_core.pipes.pipe_abc import PipeABC
from cpl_core.pipe.pipe_abc import PipeABC
class FirstCharToLowerPipe(PipeABC):