Skip to content

Commit

Permalink
Remove unnecessary type: ignore
Browse files Browse the repository at this point in the history
FIxes #25
  • Loading branch information
MKuranowski committed Apr 26, 2024
1 parent a2ca38c commit 1e62fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiocsv/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def process_char_in_escape_in_quoted(self, c: str) -> Decision:
def process_char_in_quote_in_quoted(self, c: str) -> Decision:
if c == self.dialect.quotechar and self.dialect.quoting != QUOTE_NONE:
# XXX: Is this check for quoting necessary?
self.add_char(c) # type: ignore | wtf
self.add_char(c)
self.state = ParserState.IN_QUOTED_FIELD
elif c == self.dialect.delimiter:
self.save_field()
Expand Down

0 comments on commit 1e62fe6

Please sign in to comment.