Skip to content

Commit

Permalink
Reorder import statements in steps.py
Browse files Browse the repository at this point in the history
The import statements in the steps.py file have been reordered to improve code readability and maintainability. The 'os' module is now imported after the 'inspect' module. This change does not affect the functionality of the code.
  • Loading branch information
rminchev1 committed Oct 13, 2023
1 parent 8538892 commit 665f06b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_engineer/steps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import inspect
import os
import re
import subprocess

Expand Down

0 comments on commit 665f06b

Please sign in to comment.