Skip to content

Commit 6723580

Browse files
committed
Fix circular import
1 parent c1f6ed6 commit 6723580

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sio3pack/files/local_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from sio3pack.files import File
3+
from sio3pack.files.file import File
44

55

66
class LocalFile(File):

src/sio3pack/files/remote_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from sio3pack.files import File
1+
from sio3pack.files.file import File
22

33

44
class RemoteFile(File):

0 commit comments

Comments
 (0)