Skip to content

Commit

Permalink
Import pandas before plotly.express
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Jul 8, 2024
1 parent 3f1e73b commit fb60b6c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true
},
"python.formatting.provider": "none",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"saveAndRunExt": {
"commands": [
{
"match": ".*\\.py",
"isShellCommand": true,
"cmd": "autoflake -i --remove-all-unused-imports --remove-unused-variables ${file}"
}
]
}
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true
},
"python.formatting.provider": "none",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"saveAndRunExt": {
"commands": [
{
"match": ".*\\.py",
"isShellCommand": true,
"cmd": "autoflake -i --remove-all-unused-imports --remove-unused-variables ${file}"
}
]
}
}
1 change: 1 addition & 0 deletions src/callbacks/home/embeddings/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pandas as pd
import plotly.express as px
from dash import Input, Output
from dash.exceptions import PreventUpdate
Expand Down
1 change: 1 addition & 0 deletions src/callbacks/home/plot/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import dash_bootstrap_components as dbc
import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
from dash import Input, Output, State, html
Expand Down

0 comments on commit fb60b6c

Please sign in to comment.