Skip to content

Commit

Permalink
Merge pull request #133 from rowingdude/3.0.6
Browse files Browse the repository at this point in the history
Fix missed import (?)
  • Loading branch information
rowingdude authored Sep 5, 2024
2 parents 5b28ad8 + 23467eb commit 68112c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions analyzeMFT.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import sys
import asyncio
from src.analyzeMFT.cli import main
Expand Down
3 changes: 1 addition & 2 deletions src/analyzeMFT/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ async def main():
options.export_format = "csv"


analyzer = MftAnalyzer(options.filename, options.output_file, options.debug, options.very_debug,
options.verbosity, options.compute_hashes, options.export_format)
analyzer = MftAnalyzer(options.filename, options.output_file, options.debug, options.verbosity, options.compute_hashes, options.export_format)
await analyzer.analyze()
print(f"Analysis complete. Results written to {options.output_file}")

Expand Down

0 comments on commit 68112c9

Please sign in to comment.