From 44e386dd9957b05b6e4d2497d0c2228b577c200d Mon Sep 17 00:00:00 2001
From: Tyler Goodlet <jgbt@protonmail.com>
Date: Tue, 2 Jan 2024 10:24:39 -0500
Subject: [PATCH] ._child: remove some unused imports..

---
 tractor/_child.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tractor/_child.py b/tractor/_child.py
index 91aaec4f..bd1e830e 100644
--- a/tractor/_child.py
+++ b/tractor/_child.py
@@ -18,8 +18,6 @@
 This is the "bootloader" for actors started using the native trio backend.
 
 """
-import sys
-import trio
 import argparse
 
 from ast import literal_eval
@@ -37,8 +35,6 @@ def parse_ipaddr(arg):
     return (str(host), int(port))
 
 
-from ._entry import _trio_main
-
 if __name__ == "__main__":
 
     parser = argparse.ArgumentParser()