Skip to content

Commit 077ace3

Browse files
committed
Fix bug introduced from 04ca7a8
This is why Python magic methods shouldn't be used, `not "False"` is `False`.
1 parent fd7bc18 commit 077ace3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wiktextract/wiktwords.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def main():
149149
parser.add_argument(
150150
"--skip-extraction",
151151
action="store_true",
152-
default="False",
152+
default=False,
153153
help="Skip the (usually lengthy) json data extraction "
154154
"procedure to do other things, like creating a database "
155155
"file or other files."

0 commit comments

Comments
 (0)