mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 05:23:58 -06:00
Removed relative imports
Since the oauth module isn't just in a plugin anymore, there is no need for any of the relative imports CURA-5744
This commit is contained in:
parent
3830fa0fd9
commit
3ae223334f
5 changed files with 11 additions and 14 deletions
|
@ -10,9 +10,9 @@ from UM.Logger import Logger
|
|||
from UM.Signal import Signal
|
||||
|
||||
# Plugin imports need to be relative to work in final builds.
|
||||
from .LocalAuthorizationServer import LocalAuthorizationServer
|
||||
from .AuthorizationHelpers import AuthorizationHelpers
|
||||
from .models import OAuth2Settings, AuthenticationResponse, UserProfile
|
||||
from cura.OAuth2.LocalAuthorizationServer import LocalAuthorizationServer
|
||||
from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers
|
||||
from cura.OAuth2.Models import OAuth2Settings, AuthenticationResponse, UserProfile
|
||||
|
||||
|
||||
class AuthorizationService:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue