Skip to content

Commit d852ae0

Browse files
author
Vili
committed
Minor changes
1 parent 4127f32 commit d852ae0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and [issues](https://github.com/vil/H4X-Tools/issues) page to see if there is an
88

99
## Submitting changes
1010

11-
After you have forked the project and done your changes. Open an pull request and tell what you have changed, improved
11+
After you have forked the project and done your changes. Open a pull request and tell what you have changed, improved
1212
or added.
1313

1414
Also avoid using AI, human written code is always better.

h4xtools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def main() -> None:
146146
print_menu()
147147
user_input = printer.inp(f"Tool to execute : \t")
148148

149-
if user_input in {"quit", "exit", "q", "kill"}:
149+
if user_input.lower() in {"quit", "exit", "q", "kill"}:
150150
"""
151151
Kills the program.
152152
"""

helper/timer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def wrapper(*args, **kwargs) -> str:
3737
elapsed_time = end_time - start_time # Calculate elapsed time
3838
printer.info(f"Completed in {elapsed_time:.4f} seconds.") # Print the elapsed time
3939

40-
# If require_input is True, prompt the user for input after execution
40+
# Prompt the user for input after execution
4141
if require_input:
4242
printer.inp("Press Enter key to continue...") # Prompt for input
4343

utils/leak_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@timer.timer(require_input=True)
2626
def lookup(target: str) -> None:
2727
"""
28-
Uses Hudson Rock API to gather information about a email OR domain.
28+
Uses Hudson Rock API to gather information about an email OR domain.
2929
3030
:param target: email or a domain
3131
"""

0 commit comments

Comments
 (0)