-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Fixed flake8 errors [FIX] Fixed missed renaming of `register_failures` and `fatal_callback` [REMOVE] Removed import helpers in SIP [REMOVE] Removed some import helperse in VoIP
- Loading branch information
1 parent
b873445
commit ceaabd4
Showing
9 changed files
with
55 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
from pyVoIP.VoIP import status | ||
from pyVoIP.VoIP import call, error, phone | ||
from pyVoIP.VoIP import call, phone, status | ||
|
||
InvalidRangeError = error.InvalidRangeError | ||
InvalidStateError = error.InvalidStateError | ||
NoPortsAvailableError = error.NoPortsAvailableError | ||
CallState = call.CallState | ||
PhoneStatus = status.PhoneStatus | ||
VoIPCall = call.VoIPCall | ||
PhoneStatus = status.PhoneStatus | ||
VoIPPhone = phone.VoIPPhone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyVoIP.SIP import SIPMessage | ||
from pyVoIP.SIP.message import SIPMessage | ||
import pytest | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyVoIP.SIP import SIPMessage | ||
from pyVoIP.SIP.message import SIPMessage | ||
import pytest | ||
|
||
|
||
|