Skip to content

Commit

Permalink
flake8/linter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 17, 2024
1 parent 0cfdb2b commit e55c0f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion applications/aws_dashboard/pages/models/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ def models_layout(
[
# Column 1: Model Details
dbc.Col(model_details, width=4, style={"padding": "30px 0px 0px 0px"}, className="text-break"),

# Column 2: Model Plot and Plugins
dbc.Col(
[
Expand Down
9 changes: 7 additions & 2 deletions tests/transforms/data_to_data_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ def test():
input_uuid = "abalone_data"
output_uuid = "abalone_long_tags"
data_to_data = DataToDataLight(input_uuid, output_uuid)
tags = ['nightly', 'assay:hlm_phase1', 'target:udm_asy_res_intrinsic_clearance_ul_per_min_per_mg_protein',
'feature_endpoint:smiles-to-rdkit-mordred', 'training:80']
tags = [
"nightly",
"assay:hlm_phase1",
"target:udm_asy_res_intrinsic_clearance_ul_per_min_per_mg_protein",
"feature_endpoint:smiles-to-rdkit-mordred",
"training:80",
]
data_to_data.set_output_tags(tags)
data_to_data.transform()

Expand Down

0 comments on commit e55c0f5

Please sign in to comment.