File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 38
38
class GroupPlugin (BasePlugin [GroupConfig ]):
39
39
supports_multiple_instances = True
40
40
41
+ # Initialize plugin
42
+ def __init__ (self , * args , ** kwargs ):
43
+ super ().__init__ (* args , ** kwargs )
44
+
45
+ # Initialize object attributes
46
+ self .is_serve = False
47
+ self .is_dirty = False
48
+
41
49
# Determine whether we're serving the site
42
50
def on_startup (self , * , command , dirty ):
43
51
self .is_serve = command == "serve"
Original file line number Diff line number Diff line change 38
38
class GroupPlugin (BasePlugin [GroupConfig ]):
39
39
supports_multiple_instances = True
40
40
41
+ # Initialize plugin
42
+ def __init__ (self , * args , ** kwargs ):
43
+ super ().__init__ (* args , ** kwargs )
44
+
45
+ # Initialize object attributes
46
+ self .is_serve = False
47
+ self .is_dirty = False
48
+
41
49
# Determine whether we're serving the site
42
50
def on_startup (self , * , command , dirty ):
43
51
self .is_serve = command == "serve"
You can’t perform that action at this time.
0 commit comments