Skip to content

Commit

Permalink
Refactored interface imports
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Nov 27, 2024
1 parent 9319d61 commit 6756212
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion RNS/Interfaces/AX25KISSInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
4 changes: 2 additions & 2 deletions RNS/Interfaces/AutoInterface.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License
#
# Copyright (c) 2016-2022 Mark Qvist / unsigned.io
# Copyright (c) 2016-2024 Mark Qvist / unsigned.io
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from collections import deque
import socketserver
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/I2PInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
import socketserver
import threading
import platform
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/KISSInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/LocalInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
import socketserver
import threading
import socket
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/PipeInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/RNodeInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/RNodeMultiInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/SerialInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
from time import sleep
import sys
import threading
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/TCPInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
import socketserver
import threading
import platform
Expand Down
2 changes: 1 addition & 1 deletion RNS/Interfaces/UDPInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .Interface import Interface
from RNS.Interfaces.Interface import Interface
import socketserver
import threading
import socket
Expand Down

0 comments on commit 6756212

Please sign in to comment.