Skip to content

Commit 50421d8

Browse files
committed
🚚 Refactor import statements and remove unnecessary newlines in frontend files
1 parent f320bcc commit 50421d8

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

‎examples/frontend/app.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
import sys
33

44
import streamlit as st
5-
from utils import get_images # type: ignore
6-
75
from codeinterpreterapi import File
6+
from utils import get_images # type: ignore
87

98
# Page configuration
109
st.set_page_config(layout="wide")

‎examples/frontend/chainlitui.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import chainlit as cl # type: ignore
2-
32
from codeinterpreterapi import CodeInterpreterSession
43
from codeinterpreterapi import File as CIFile
54

‎examples/frontend/utils.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from typing import Optional
55

66
import streamlit as st
7-
87
from codeinterpreterapi import CodeInterpreterSession
98

109

0 commit comments

Comments
 (0)