Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
Became necessary due to the known-third-party ruff flag
  • Loading branch information
AdrianSosic committed Jul 22, 2024
1 parent c449eca commit 8508b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamlit/initial_recommender.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import numpy as np
import pandas as pd
import plotly.graph_objects as go
import streamlit as st
from sklearn.datasets import make_blobs

import streamlit as st
from baybe.recommenders.pure.nonpredictive.base import NonPredictiveRecommender
from baybe.searchspace import SearchSpace, SubspaceDiscrete
from baybe.utils.basic import get_subclasses
Expand Down

0 comments on commit 8508b23

Please sign in to comment.