Skip to content
This repository has been archived by the owner on Aug 5, 2023. It is now read-only.

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
gusutabopb committed Sep 4, 2018
1 parent f9d9a69 commit 601aea5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
test:
flake8 --max-line-length=100 --ignore=F841,F403,F405
flake8 --max-line-length=100 --ignore=F841,F403,F405,W503
pytest --verbose --cov=aioinflux --cov-append --cov-report html tests/

cov: test
Expand Down
4 changes: 2 additions & 2 deletions aioinflux/serialization/datapoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
import ciso8601
import time
# noinspection PyUnresolvedReferences
import re
import re # noqa
from collections import Counter

# noinspection PyUnresolvedReferences
from .common import *
from .common import * # noqa
from .. import pd


Expand Down

0 comments on commit 601aea5

Please sign in to comment.