Skip to content

Commit

Permalink
chore: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 3, 2023
1 parent 2c15de4 commit fbd1a31
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions agatecharts/table.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import agate
from matplotlib import pyplot

from agatecharts.charts import Bars, Columns, Lines, Scatter
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ per-file-ignores =
# imported but unused
agatecharts/__init__.py: F401
agatecharts/charts/__init__.py: F401
example.py: F401

[isort]
line_length = 119
Expand Down
1 change: 1 addition & 0 deletions tests/test_bar.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import csv
import os
import unittest

import agate

import agatecharts # noqa: F401
Expand Down
1 change: 1 addition & 0 deletions tests/test_column.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import csv
import os
import unittest

import agate

import agatecharts # noqa: F401
Expand Down
1 change: 1 addition & 0 deletions tests/test_line.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import csv
import os
import unittest

import agate

import agatecharts # noqa: F401
Expand Down
1 change: 1 addition & 0 deletions tests/test_scatter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import csv
import os
import unittest

import agate

import agatecharts # noqa: F401
Expand Down

0 comments on commit fbd1a31

Please sign in to comment.