Skip to content

Commit 5a0405b

Browse files
committedJul 15, 2019
add flake8 exception for sql line length
1 parent d959bab commit 5a0405b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎.flake8

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ exclude =
55
__pycache__,
66
build,
77
dist,
8-
venv
8+
venv
9+
per-file-ignores =
10+
./castero/database.py:E501

‎castero/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def replace_episode(self, feed: Feed, episode: Episode) -> None:
146146
147147
Episode instances have an ep_id field which is the episode's unique id
148148
in the database, if set. If it was not set when this method is called,
149-
we update it after the episode has been added to the database.
149+
we update it after the episode has been added to the database.
150150
151151
Args:
152152
feed: the Feed the episode is a part of

0 commit comments

Comments
 (0)
Please sign in to comment.