Skip to content

Commit 169402a

Browse files
committed
fix: fixed imports
tested and fixed imports
1 parent b8a8941 commit 169402a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/Todo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Height Priority
44

5-
- [ ] Test imports manager on challenging cases
5+
- [x] Test imports manager on challenging cases
66
- [ ] Rename the project
77

88
### Medium Priority

scr/commands/obfuscation/obfuscate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def SaveFile(self, filename, filepath, content, entrypoint = False):
211211
if entrypoint:
212212
imports = ""
213213
for module in self.imports:
214-
imp+=f"import {module}\n"
214+
imports+=f"import {module}\n"
215215

216216
filepath = self.this.options["--output"]+sep+filepath
217217
makedirs(filepath, exist_ok=True)

0 commit comments

Comments
 (0)