Browse Source

Fix pylint issues

Harshg999 4 năm trước cách đây
mục cha
commit
1f267f4c1e

+ 1 - 1
desktop/core/src/desktop/lib/botserver/apps.py

@@ -2,4 +2,4 @@ from django.apps import AppConfig
 
 
 class BotserverConfig(AppConfig):
-    name = 'botserver'
+  name = 'botserver'

+ 1 - 1
desktop/core/src/desktop/lib/botserver/urls.py

@@ -2,5 +2,5 @@ from django.conf.urls import url
 from . import views
 
 urlpatterns = [
-  url(r'^events/', views.home, name = 'home')
+  url(r'^events/', views.home, name='home')
 ]