Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,8 @@ import streamlit as st
|
|
4 |
import plotly.graph_objects as go
|
5 |
from plotly.subplots import make_subplots
|
6 |
import time
|
|
|
|
|
7 |
|
8 |
class Organelle:
|
9 |
def __init__(self, type):
|
|
|
4 |
import plotly.graph_objects as go
|
5 |
from plotly.subplots import make_subplots
|
6 |
import time
|
7 |
+
from collections import deque # Add this line
|
8 |
+
import threading
|
9 |
|
10 |
class Organelle:
|
11 |
def __init__(self, type):
|