Skip to content

Commit

Permalink
Formatting and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
another-rex committed Aug 29, 2024
1 parent 047f7c7 commit 7d1539d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osv/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ class Bug(ndb.Model):
# Whether or not the bug has any affected versions (auto-populated).
has_affected: bool = ndb.BooleanProperty()
# Source of truth for this Bug.
source_of_truth: SourceOfTruth = ndb.IntegerProperty(default=SourceOfTruth.INTERNAL)
source_of_truth: SourceOfTruth = ndb.IntegerProperty(
default=SourceOfTruth.INTERNAL)
# Whether the bug is fixed (indexed for querying).
is_fixed: bool = ndb.BooleanProperty()
# Database specific.
Expand Down
1 change: 1 addition & 0 deletions tools/api-performance-test/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
all_bugs

0 comments on commit 7d1539d

Please sign in to comment.