Skip to content

Commit

Permalink
Resolve remaining flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Aug 21, 2019
1 parent e9e1913 commit 077d074
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/src/apiserver/visualization/tfdv.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# flake8: noqa TODO

import tensorflow_data_validation as tfdv

# The following variables are provided through dependency injection. These
Expand All @@ -20,6 +22,6 @@
#
# source

train_stats = tfdv.generate_statistics_from_csv(data_location=source) # noqa: F821 TODO
train_stats = tfdv.generate_statistics_from_csv(data_location=source)

tfdv.visualize_statistics(train_stats)

0 comments on commit 077d074

Please sign in to comment.