Skip to content

Commit

Permalink
fix nullable for diff
Browse files Browse the repository at this point in the history
  • Loading branch information
jonwzheng committed Jul 9, 2024
1 parent e3676dc commit 21aa9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgweb/rmg/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def __init__(self, *args, **kwargs):
dict_file1 = models.FileField(upload_to=uploadTo('RMG_Dictionary1.txt'), verbose_name='Model 1: RMG Dictionary', blank=True, null=True)
foreign1 = models.BooleanField(verbose_name="Model 1 not an RMG-generated Chemkin file")
chem_file2 = models.FileField(upload_to=uploadTo('chem2.inp'), verbose_name='Model 2: Chemkin File', blank=True, null=True)
dict_file2 = models.FileField(upload_to=uploadTo('RMG_Dictionary2.txt'), verbose_name='Model 2: RMG Dictionary', )
dict_file2 = models.FileField(upload_to=uploadTo('RMG_Dictionary2.txt'), verbose_name='Model 2: RMG Dictionary', blank=True, null=True)
foreign2 = models.BooleanField(verbose_name="Model 2 not an RMG-generated Chemkin file")

def createOutput(self):
Expand Down

0 comments on commit 21aa9a9

Please sign in to comment.