Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/rat_king_parser/rkp.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ def main() -> None:
if len(decrypted_configs) > 0:
print(dumps(decrypted_configs, ensure_ascii=False))

def test_gemini_review():
"most useless func ever"
import sys
sys.exit()
Comment on lines +127 to +130

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This function immediately exits the program. Is this intentional? If it's for testing or debugging, it should be removed before merging into the main branch, or at least be guarded by a debug flag. If it's not needed, it should be removed to avoid confusion.


if __name__ == "__main__":
main()