Adjusting file to work with new folder/filder structure.
This commit is contained in:
parent
b792318a53
commit
ab68c8b56a
1 changed files with 4 additions and 4 deletions
8
main.py
8
main.py
|
@ -1,9 +1,9 @@
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from utility import Utilities
|
from utils.utility import Utilities
|
||||||
from image_handler import ImageProcessor, ExifHandler
|
from utils.image_handler import ImageProcessor, ExifHandler
|
||||||
from tui import SimpleTUI
|
from ui.tui import SimpleTUI
|
||||||
|
|
||||||
class Optima35:
|
class Optima35:
|
||||||
# The layout of class Optima35 was originally made by ChatGPT, but major adjustments have been made. To remain transparent, I disclose this.
|
# The layout of class Optima35 was originally made by ChatGPT, but major adjustments have been made. To remain transparent, I disclose this.
|
||||||
|
@ -286,5 +286,5 @@ class Optima35:
|
||||||
print("Done")
|
print("Done")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
app = Optima35("settings.yaml", "exif_options.yaml")
|
app = Optima35("config/settings.yaml", "config/exif_options.yaml")
|
||||||
app.run()
|
app.run()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue