Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'blenderkit/bkit_oauth.py')
-rw-r--r--blenderkit/bkit_oauth.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/blenderkit/bkit_oauth.py b/blenderkit/bkit_oauth.py
index 6658244c..4f3e5160 100644
--- a/blenderkit/bkit_oauth.py
+++ b/blenderkit/bkit_oauth.py
@@ -188,7 +188,7 @@ class CancelLoginOnline(bpy.types.Operator):
return {'FINISHED'}
-classess = (
+classes = (
RegisterLoginOnline,
CancelLoginOnline,
Logout,
@@ -196,10 +196,10 @@ classess = (
def register():
- for c in classess:
+ for c in classes:
bpy.utils.register_class(c)
def unregister():
- for c in classess:
+ for c in classes:
bpy.utils.unregister_class(c)