Skip to content

Commit 54c020b

Browse files
authored
Merge pull request #13 from FalkorDB/delay-git-import
simplfy flask app
2 parents 685e349 + 8e3fd0d commit 54c020b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

code_graph/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from .llm import ask
33
from .graph import *
44
from .entities import *
5-
from .app import create_app
65
from .code_coverage import *
76
from .analyzers.source_analyzer import *
87
from .auto_complete import prefix_search

code_graph/app.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,3 +315,5 @@ def chat():
315315

316316
return jsonify(response), 200
317317

318+
if __name__ == '__main__':
319+
app.run()

0 commit comments

Comments
 (0)