Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Nov 22, 2024
1 parent 280e1d4 commit 271ef81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/fyle/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Expense(BaseForeignWorkspaceModel):
spent_at = CustomDateTimeField(help_text='Expense spent at')
approved_at = CustomDateTimeField(help_text='Expense approved at')
posted_at = CustomDateTimeField(help_text='Date when the money is taken from the bank')
# is_posted_at_null = models.BooleanField(default=False, help_text='Flag check if posted at is null or not')
is_posted_at_null = models.BooleanField(default=False, help_text='Flag check if posted at is null or not')
is_skipped = models.BooleanField(null=True, default=False, help_text='Expense is skipped or not')
expense_created_at = CustomDateTimeField(help_text='Expense created at')
expense_updated_at = CustomDateTimeField(help_text='Expense created at')
Expand Down

0 comments on commit 271ef81

Please sign in to comment.