Skip to content

Commit

Permalink
fix: replace multiprocessing with multiprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineRR committed Feb 10, 2023
1 parent caf55d5 commit f875ef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion robyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import asyncio
import logging
import multiprocessing as mp
import multiprocess as mp
import os
import signal
from typing import Callable, List, Optional
Expand Down
2 changes: 1 addition & 1 deletion robyn/processpool.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import asyncio
from multiprocessing import Process
from multiprocess import Process
import signal
import sys
from typing import Dict, List
Expand Down

0 comments on commit f875ef0

Please sign in to comment.