Skip to content

Commit 208dc8f

Browse files
committed
template_python -> template_langgraph
1 parent 782b8ee commit 208dc8f

File tree

9 files changed

+6
-6
lines changed

9 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
2626
# Copy application code after dependencies are installed
2727
COPY . .
2828

29-
CMD ["python", "template_python/core.py"]
29+
CMD ["python", "template_langgraph/core.py"]

scripts/template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import typer
55
from dotenv import load_dotenv
66

7-
from template_python.loggers import get_logger
8-
from template_python.settings import Settings
7+
from template_langgraph.loggers import get_logger
8+
from template_langgraph.settings import Settings
99

1010
# Initialize the Typer application
1111
app = typer.Typer(
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import pytest
55

6-
from template_python.core import hello_world
6+
from template_langgraph.core import hello_world
77

88
logger = getLogger(__name__)
99

tests/test_loggers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from logging import getLogger
33

4-
from template_python.loggers import get_logger
4+
from template_langgraph.loggers import get_logger
55

66
logger = getLogger(__name__)
77

tests/test_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from dotenv import load_dotenv
55

6-
from template_python.settings import Settings
6+
from template_langgraph.settings import Settings
77

88
logger = getLogger(__name__)
99

0 commit comments

Comments
 (0)