Skip to content

Commit

Permalink
✨ ruff fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Mar 10, 2024
1 parent 8f2ecbc commit ae2fc0d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/chatgpt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Simple chatgpt rebuild with memory/history.
"""

from funcchain import chain, settings
from funcchain.utils.memory import ChatMessageHistory

Expand Down
1 change: 1 addition & 0 deletions src/funcchain/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Funcchain Settings:
Automatically loads environment variables from .env file
"""

from typing import Optional

from langchain_core.language_models import BaseChatModel
Expand Down
1 change: 1 addition & 0 deletions src/funcchain/parser/primitive_types.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Primitive Types Parser
"""

from typing import Generic, TypeVar

from pydantic import BaseModel, create_model
Expand Down
4 changes: 2 additions & 2 deletions src/funcchain/syntax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
""" Syntax -> Signature
"""
"""Syntax -> Signature"""

from .decorators import runnable
from .executable import achain, chain
from .output_types import CodeBlock, Error
Expand Down

0 comments on commit ae2fc0d

Please sign in to comment.