Skip to content

Commit

Permalink
fix pip list
Browse files Browse the repository at this point in the history
  • Loading branch information
molotgor committed Jun 19, 2024
1 parent e153f2d commit 47a5dd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os
os.system('pip list')

import subprocess
Expand All @@ -24,7 +25,6 @@
from glob import glob
import json
import datetime
import os
import asyncio
from argparse import ArgumentParser

Expand Down Expand Up @@ -270,6 +270,7 @@ def launchNotebook(input, arguments=None, file_name=None):
return web.HTTPInternalServerError(reason=error)
finally:
serverStatus = 'idle'
print(asyncio.all_tasks())


async def reqLaunch(req: Request):
Expand Down

0 comments on commit 47a5dd6

Please sign in to comment.