Skip to content

Commit fa64b8a

Browse files
guilyxactions-user
authored andcommitted
Apply formatting changes
1 parent 64d5d47 commit fa64b8a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

jupyddl/automated_planner.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import coloredlogs
77
import logging
88
import julia
9+
910
_ = julia.Julia(compiled_modules=False, debug=False)
1011
from julia import PDDL
1112
from time import time as now
@@ -29,11 +30,12 @@ def __init__(self, domain_path, problem_path, log_level="DEBUG"):
2930
self.__init_logger(log_level)
3031
self.logger = logging.getLogger("automated_planning")
3132
coloredlogs.install(level=log_level)
32-
33+
3334
def __init_logger(self, log_level):
3435
import os
35-
if not os.path.exists('logs'):
36-
os.makedirs('logs')
36+
37+
if not os.path.exists("logs"):
38+
os.makedirs("logs")
3739
logging.basicConfig(
3840
filename="logs/main.log",
3941
format="%(levelname)s:%(message)s",

0 commit comments

Comments
 (0)