Skip to content

Commit

Permalink
linter reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed May 15, 2023
1 parent c0155b7 commit 0873aff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion applications/aws_dashboard/pages/data_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

# Create a box plot of all the numeric columns in the sample rows
smart_sample_rows = data_source_broker.data_source_smart_sample(0)
violin = violin_plot.create('data_source_violin_plot', smart_sample_rows)
violin = violin_plot.create("data_source_violin_plot", smart_sample_rows)

# Create our components
components = {
Expand Down
4 changes: 2 additions & 2 deletions applications/aws_dashboard/pages/feature_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

# Create a box plot of all the numeric columns in the sample rows
smart_sample_rows = feature_set_broker.feature_set_smart_sample(0)
violin = violin_plot.create('feature_set_violin_plot', smart_sample_rows)
violin = violin_plot.create("feature_set_violin_plot", smart_sample_rows)

# Create our components
components = {
Expand All @@ -73,4 +73,4 @@
callbacks.update_violin_plots(app, feature_set_broker)

# Set up our layout (Dash looks for a var called layout)
layout = feature_sets_layout(components)
layout = feature_sets_layout(components)
1 change: 0 additions & 1 deletion src/sageworks/artifacts/feature_sets/feature_set.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""FeatureSet: SageWorks Feature Set accessible through Athena"""
import time
import json
from datetime import datetime, timezone

import botocore.exceptions
Expand Down

0 comments on commit 0873aff

Please sign in to comment.