File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 3838class GroupPlugin (BasePlugin [GroupConfig ]):
3939 supports_multiple_instances = True
4040
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+
4149 # Determine whether we're serving the site
4250 def on_startup (self , * , command , dirty ):
4351 self .is_serve = command == "serve"
Original file line number Diff line number Diff line change 3838class GroupPlugin (BasePlugin [GroupConfig ]):
3939 supports_multiple_instances = True
4040
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+
4149 # Determine whether we're serving the site
4250 def on_startup (self , * , command , dirty ):
4351 self .is_serve = command == "serve"
You can’t perform that action at this time.
0 commit comments