From a02b57698aca34fdbedda9dfd33b69131afa2b50 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 25 Sep 2024 19:45:14 +0700 Subject: [PATCH] Add missing imports --- gns3server/controller/project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gns3server/controller/project.py b/gns3server/controller/project.py index 78cc14e5..f530ecb2 100644 --- a/gns3server/controller/project.py +++ b/gns3server/controller/project.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +import sys import re import os import json @@ -27,6 +28,7 @@ import aiohttp import aiofiles import tempfile import zipfile +import pathlib from uuid import UUID, uuid4