Update tools.py
Browse files
tools.py
CHANGED
|
@@ -28,6 +28,7 @@ class read_python_file(Tool):
|
|
| 28 |
output_type = "string"
|
| 29 |
|
| 30 |
def forward(self, file_name):
|
|
|
|
| 31 |
try:
|
| 32 |
with open(file_name, "r", encoding="utf-8") as fichier:
|
| 33 |
contenu = fichier.read()
|
|
|
|
| 28 |
output_type = "string"
|
| 29 |
|
| 30 |
def forward(self, file_name):
|
| 31 |
+
|
| 32 |
try:
|
| 33 |
with open(file_name, "r", encoding="utf-8") as fichier:
|
| 34 |
contenu = fichier.read()
|