Skip to content

Commit

Permalink
fix imports in helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Oct 18, 2023
1 parent 6fd0f5a commit 4885859
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/engine/src/helpers/TemplateMapper.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from typing import Union

from .TemplateRepository import TemplateRepository
from ..owe_python_sdk.schema import (
from TemplateRepository import TemplateRepository
from owe_python_sdk.schema import (
Uses,
Pipeline,
Task,
TemplateTask,
FunctionTask,
ApplicationTask,
ImageBuildTask,
Expand Down
4 changes: 2 additions & 2 deletions src/engine/src/helpers/TemplateRepository.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os,json

from .GitCacheService import GitCacheService
from ..owe_python_sdk.schema import Uses
from GitCacheService import GitCacheService
from owe_python_sdk.schema import Uses

class TemplateRepository:
def __init__(self, cache_dir: str):
Expand Down

0 comments on commit 4885859

Please sign in to comment.