Skip to content

Commit

Permalink
set analyze to true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
josamontiel committed May 28, 2023
1 parent 530e8aa commit ec3f61b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Flukey-Lite/bin/lite.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
from rich import print
from rich.console import Console
from rich.table import Table
from string import ascii_lowercase, ascii_uppercase, digits, punctuation
from string import ascii_lowercase as lowercase, ascii_uppercase as uppercase, digits, punctuation
from typing import Any, List, Optional, Tuple
from typing_extensions import Annotated

RNG = secrets.SystemRandom()
CATEGORIES = (ascii_lowercase, ascii_uppercase, digits, punctuation)
CATEGORIES = (lowercase, uppercase, digits, punctuation)
CATEGORY_NAMES = ()
STYLES = tuple(
"[{0}]{{}}[/{0}]".format(color) for color in ("magenta", "red", "cyan", "green")
Expand Down Expand Up @@ -319,7 +319,7 @@ def main(
symbol: BOOLEANS[1] = True,
uniform: BOOLEANS[2] = False,
summary: BOOLEANS[3] = False,
analyze: BOOLEANS[4] = False,
analyze: BOOLEANS[4] = True,
extensive: BOOLEANS[5] = False,
redirect: REDIRECT = None,
) -> None:
Expand Down

0 comments on commit ec3f61b

Please sign in to comment.