Skip to content

Commit

Permalink
chore: fix flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
theskumar committed Sep 3, 2022
1 parent a53d652 commit 6399af6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tag = True

[flake8]
max-line-length = 120
exclude = .tox,.git,docs,venv,.venv
exclude = .tox,.git,docs,venv,.venv,build

[mypy]
check_untyped_defs = true
Expand Down
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_set_key_no_file(tmp_path):

def test_set_key_invalid_file():
with pytest.raises(TypeError):
result = dotenv.set_key(None, "foo", "bar")
dotenv.set_key(None, "foo", "bar")


@pytest.mark.parametrize(
Expand Down

0 comments on commit 6399af6

Please sign in to comment.