Skip to content

Commit

Permalink
XLSX reporting module code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
OSINT-TECHNOLOGIES committed Sep 11, 2024
1 parent 46909d7 commit c87ff1e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions reporting_modules/xlsx_report_creation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import sys

sys.path.append('service')

from logs_processing import logging
import db_processing as db
import files_processing as fp

try:
from datetime import datetime
Expand All @@ -13,9 +17,6 @@
print(Fore.RED + "Import error appeared. Reason: {}".format(e) + Style.RESET_ALL)
sys.exit()

import db_processing as db
import files_processing as fp

def create_report(short_domain, url, case_comment, data_array, report_info_array, pagesearch_ui_mark, pagesearch_keyword, end):
try:
ip = data_array[0]
Expand Down

0 comments on commit c87ff1e

Please sign in to comment.