Skip to content

Commit

Permalink
Fix formatting and remove experimental features
Browse files Browse the repository at this point in the history
The shell got moved into its own private project and we no longer need
the http proxy
  • Loading branch information
AlvinKuruvilla committed Nov 14, 2023
1 parent f3ae3e9 commit 8bc5877
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 378 deletions.
6 changes: 4 additions & 2 deletions src/base/displayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,15 @@ def animated_marker(text: str) -> None:
time.sleep(0.02)


def dprint(d: Dict[str, str], key_format: str="\033[1;32m", value_format: str="\033[1;34m") -> None:
def dprint(
d: Dict[str, str], key_format: str = "\033[1;32m", value_format: str = "\033[1;34m"
) -> None:
for key in d.keys():
print(key_format, key + ":", value_format, d[key])


def start_menu() -> Any:
options = ["1: Start KMLogger", "2: Start Interactive Shell", "3: Exit"]
options = ["1: Start KMLogger", "2: Exit"]
# NOTE: For menu_highlight_style, the comma after "bg_black" is needed
terminal_menu = TerminalMenu(
options,
Expand Down
5 changes: 0 additions & 5 deletions src/rep/__init__.py

This file was deleted.

35 changes: 0 additions & 35 deletions src/rep/http_logger.py

This file was deleted.

120 changes: 0 additions & 120 deletions src/rep/proxy.py

This file was deleted.

5 changes: 0 additions & 5 deletions src/shell/__init__.py

This file was deleted.

52 changes: 0 additions & 52 deletions src/shell/commands.py

This file was deleted.

43 changes: 0 additions & 43 deletions src/shell/shell.py

This file was deleted.

109 changes: 0 additions & 109 deletions src/shell/utils.py

This file was deleted.

Loading

0 comments on commit 8bc5877

Please sign in to comment.