Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 8, 2023
1 parent a079d4d commit 4990ba1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test_configparser.py
Expand Up @@ -42,11 +42,11 @@ def itervalues(self):

class CfgParserTestCaseClass:
allow_no_value = False
delimiters = ('=', ':') # type: Iterable[str]
comment_prefixes = (';', '#') # type: Iterable[str]
inline_comment_prefixes = (';', '#') # type: Iterable[str]
delimiters: Iterable[str] = ('=', ':')
comment_prefixes: Iterable[str] = (';', '#')
inline_comment_prefixes: Iterable[str] = (';', '#')
empty_lines_in_values = True
dict_type = configparser._default_dict # type: Type[collections.abc.Mapping]
dict_type: Type[collections.abc.Mapping] = configparser._default_dict
strict = False
default_section = configparser.DEFAULTSECT
interpolation = configparser._UNSET
Expand Down

0 comments on commit 4990ba1

Please sign in to comment.