@@ -29,7 +29,7 @@ class Runtime(models.Model):
2929 """Available ARENA runtimes."""
3030
3131 INPUT_ATTRS = [
32- "type" , " name" , "apis" , "runtime_type" , "max_nmodules" , "page_size" ,
32+ "name" , "apis" , "runtime_type" , "max_nmodules" , "page_size" ,
3333 "aot_target"
3434 ]
3535
@@ -86,7 +86,7 @@ class Module(models.Model):
8686 """Currently running modules."""
8787
8888 INPUT_ATTRS = [
89- "type" , " name" , "filename" , "filetype" , "apis" , "args" , "env" ,
89+ "name" , "filename" , "filetype" , "apis" , "args" , "env" ,
9090 "channels" , "peripherals" ]
9191
9292 uuid = models .UUIDField (
@@ -107,7 +107,8 @@ class Module(models.Model):
107107 source = models .ForeignKey (
108108 'File' , on_delete = models .PROTECT , blank = True , null = True ,
109109 help_text = "Source file identifier (for profile tracking)" )
110- wasm = models .TextField (default = "" , blank = True ,
110+ wasm = models .TextField (
111+ default = "" , blank = True ,
111112 help_text = "WASM file contents to send to runtime" )
112113 apis = models .JSONField (
113114 default = _emptylist , blank = True ,
0 commit comments