Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[possibly-used-before-assignment] Fix FP for sys.exit() #9634

Merged
merged 1 commit into from
May 16, 2024

Conversation

jacobtylerwalls
Copy link
Member

Type of Changes

Type
βœ“ πŸ› Bug fix

Description

Closes #9627

@jacobtylerwalls jacobtylerwalls added False Positive 🦟 A message is emitted but nothing is wrong with the code backport maintenance/3.2.x labels May 16, 2024
@jacobtylerwalls jacobtylerwalls added this to the 3.2.1 milestone May 16, 2024
Copy link

codecov bot commented May 16, 2024

Codecov Report

All modified and coverable lines are covered by tests βœ…

Project coverage is 95.83%. Comparing base (67e59ac) to head (9b6f8e1).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #9634   +/-   ##
=======================================
  Coverage   95.83%   95.83%           
=======================================
  Files         174      174           
  Lines       18889    18891    +2     
=======================================
+ Hits        18103    18105    +2     
  Misses        786      786           
Files Coverage Ξ”
pylint/checkers/variables.py 97.35% <100.00%> (+<0.01%) ⬆️

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚑

@Pierre-Sassoulas Pierre-Sassoulas enabled auto-merge (squash) May 16, 2024 12:05
@Pierre-Sassoulas Pierre-Sassoulas merged commit c6a9699 into main May 16, 2024
48 checks passed
@Pierre-Sassoulas Pierre-Sassoulas deleted the fix-fp-terminating-func branch May 16, 2024 12:08
github-actions bot pushed a commit that referenced this pull request May 16, 2024
Copy link
Contributor

πŸ€– Effect of this PR on checked open source code: πŸ€–

Effect on pytest:
The following messages are now emitted:

  1. redefined-variable-type:
    Redefinition of file type from _io.TextIOWrapper to colorama.ansitowin32.StreamWrapper
    https://github.com/pytest-dev/pytest/blob/93dd34e76d9c687d1c249fe8cf94bdf46813f783/src/_pytest/_io/terminalwriter.py#L77

Effect on django:
The following messages are no longer emitted:

  1. invalid-name:
    Attribute name "ALLOWED_HOSTS" doesn't conform to snake_case naming style
    https://github.com/django/django/blob/f030236a86a64a4befd3cc8093e2bbeceef52a31/django/test/utils.py#L141
  2. invalid-name:
    Attribute name "DEBUG" doesn't conform to snake_case naming style
    https://github.com/django/django/blob/f030236a86a64a4befd3cc8093e2bbeceef52a31/django/test/utils.py#L144
  3. invalid-name:
    Attribute name "EMAIL_BACKEND" doesn't conform to snake_case naming style
    https://github.com/django/django/blob/f030236a86a64a4befd3cc8093e2bbeceef52a31/django/test/utils.py#L147
  4. invalid-name:
    Attribute name "MIGRATION_MODULES" doesn't conform to snake_case naming style
    https://github.com/django/django/blob/f030236a86a64a4befd3cc8093e2bbeceef52a31/django/db/backends/base/creation.py#L72

Effect on pandas:
The following messages are now emitted:

  1. redefined-variable-type:
    Redefinition of result.index type from pandas.core.indexes.multi.MultiIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/283a2dcb2f91db3452a9d2ee299632a109b224f4/pandas/core/window/common.py#L134

The following messages are no longer emitted:

  1. attribute-defined-outside-init:
    Attribute 'name' defined outside init
    https://github.com/pandas-dev/pandas/blob/283a2dcb2f91db3452a9d2ee299632a109b224f4/pandas/core/frame.py#L10500
  2. redefined-variable-type:
    Redefinition of result.index type from pandas.core.indexes.multi.MultiIndex to pandas.core.indexes.range.RangeIndex
    https://github.com/pandas-dev/pandas/blob/283a2dcb2f91db3452a9d2ee299632a109b224f4/pandas/core/window/common.py#L134

Effect on sentry:
The following messages are now emitted:

  1. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/celery.py#L8
  2. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/celery.py#L8
  3. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/event_manager.py#L16
  4. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/event_manager.py#L16
  5. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/event_manager.py#L17
  6. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/event_manager.py#L18
  7. no-name-in-module:
    No name 'encoding' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/event_manager.py#L19
  8. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/reprocessing2.py#L90
  9. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/reprocessing2.py#L90
  10. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/reprocessing2.py#L506
  11. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/reprocessing2.py#L506
  12. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/deletion.py#L9
  13. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/deletion.py#L9
  14. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/deletion.py#L10
  15. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/analyze.py#L3
  16. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/analyze.py#L3
  17. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/mixin.py#L7
  18. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/mixin.py#L7
  19. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/router.py#L7
  20. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/router.py#L7
  21. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/outboxes.py#L8
  22. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/outboxes.py#L8
  23. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/paranoia.py#L3
  24. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/paranoia.py#L3
  25. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/paranoia.py#L4
  26. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/paranoia.py#L37
  27. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L7
  28. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L7
  29. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L8
  30. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L9
  31. access-member-before-definition:
    Access to member 'pk' before its definition line 293
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L292
  32. attribute-defined-outside-init:
    Attribute 'pk' defined outside init
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/base.py#L293
  33. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/utils.py#L8
  34. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/utils.py#L9
  35. no-name-in-module:
    No name 'crypto' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/utils.py#L10
  36. no-name-in-module:
    No name 'text' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/utils.py#L11
  37. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/indexes.py#L1
  38. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/query.py#L7
  39. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/query.py#L7
  40. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/query.py#L8
  41. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/query.py#L9
  42. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/query.py#L10
  43. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/__init__.py#L4
  44. no-name-in-module:
    No name 'encoding' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/__init__.py#L5
  45. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base.py#L12
  46. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base.py#L12
  47. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base.py#L13
  48. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base.py#L14
  49. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base.py#L15
  50. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base_query_set.py#L6
  51. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base_query_set.py#L6
  52. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/base_query_set.py#L7
  53. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/manager/option.py#L7
  54. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L3
  55. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L3
  56. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L34
  57. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L37
  58. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L37
  59. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/array.py#L52
  60. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/onetoone.py#L3
  61. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/onetoone.py#L3
  62. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/onetoone.py#L4
  63. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L1
  64. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L1
  65. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L2
  66. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L15
  67. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L21
  68. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/citext.py#L27
  69. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/hybrid_cloud_foreign_key.py#L49
  70. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/hybrid_cloud_foreign_key.py#L49
  71. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/hybrid_cloud_foreign_key.py#L95
  72. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L29
  73. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L29
  74. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L30
  75. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L72
  76. unused-argument:
    Unused argument 'model_instance'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L72
  77. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L80
  78. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L90
  79. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L90
  80. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L93
  81. unused-argument:
    Unused argument 'connection'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L93
  82. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L93
  83. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L96
  84. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L111
  85. unused-argument:
    Unused argument 'connection'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L111
  86. unused-argument:
    Unused argument 'prepared'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L111
  87. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L114
  88. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/jsonfield.py#L121
  89. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/gzippeddict.py#L6
  90. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/node.py#L10
  91. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/slug.py#L1
  92. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/slug.py#L2
  93. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L4
  94. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L4
  95. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L19
  96. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L16
  97. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L29
  98. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L26
  99. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L39
  100. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L36
  101. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L53
  102. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L53
  103. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L56
  104. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L67
  105. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L67
  106. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L70
  107. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L78
  108. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/bounded.py#L81
  109. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/foreignkey.py#L5
  110. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/foreignkey.py#L5
  111. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/foreignkey.py#L6
  112. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/text.py#L17
  113. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/text.py#L17
  114. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/text.py#L18
  115. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/text.py#L28
  116. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/text.py#L32
  117. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L33
  118. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L33
  119. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L34
  120. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L89
  121. unused-argument:
    Unused argument 'connection'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L89
  122. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L89
  123. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L92
  124. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L92
  125. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/models/fields/uuid.py#L129
  126. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/helpers.py#L2
  127. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/schema.py#L1
  128. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/schema.py#L4
  129. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/schema.py#L5
  130. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/base.py#L5
  131. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/base.py#L6
  132. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/transactions.py#L7
  133. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/transactions.py#L7
  134. import-error:
    Unable to import 'django.db.transaction'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/transactions.py#L8
  135. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/db/postgres/transactions.py#L8
  136. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0570_repository_add_languages_column.py#L3
  137. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0570_repository_add_languages_column.py#L3
  138. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0538_remove_name_data_from_rule.py#L3
  139. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0538_remove_name_data_from_rule.py#L3
  140. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0538_remove_name_data_from_rule.py#L4
  141. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0538_remove_name_data_from_rule.py#L5
  142. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L3
  143. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L4
  144. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L5
  145. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L5
  146. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L51
  147. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L52
  148. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0504_add_artifact_bundle_index.py#L56
  149. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0665_monitor_drop_last_state_change_db.py#L3
  150. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0665_monitor_drop_last_state_change_db.py#L3
  151. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L3
  152. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L4
  153. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L5
  154. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L5
  155. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L54
  156. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L58
  157. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0541_add_replicated_auth_models.py#L99
  158. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0569_dashboard_widgets_indicator.py#L3
  159. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0569_dashboard_widgets_indicator.py#L3
  160. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0568_monitors_fix_next_checkin_latest.py#L5
  161. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0568_monitors_fix_next_checkin_latest.py#L5
  162. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0568_monitors_fix_next_checkin_latest.py#L6
  163. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0568_monitors_fix_next_checkin_latest.py#L7
  164. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0568_monitors_fix_next_checkin_latest.py#L8
  165. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0529_remove_pagerduty_service.py#L3
  166. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0529_remove_pagerduty_service.py#L3
  167. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0630_better_monitor_latest_index.py#L3
  168. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0630_better_monitor_latest_index.py#L3
  169. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0593_add_notification_flag_to_dynamic_sampling_custom_rule.py#L3
  170. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0593_add_notification_flag_to_dynamic_sampling_custom_rule.py#L3
  171. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0721_delete_sentryfunctions.py#L3
  172. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0721_delete_sentryfunctions.py#L3
  173. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0662_monitor_drop_last_state_change.py#L3
  174. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0662_monitor_drop_last_state_change.py#L3
  175. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0648_monitor_env_break_env_fk.py#L3
  176. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0648_monitor_env_break_env_fk.py#L4
  177. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0648_monitor_env_break_env_fk.py#L4
  178. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0648_monitor_env_break_env_fk.py#L35
  179. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0576_add_missing_org_integration_scope.py#L3
  180. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0576_add_missing_org_integration_scope.py#L3
  181. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0610_remove_notification_setting_table.py#L3
  182. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0610_remove_notification_setting_table.py#L3
  183. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0567_add_slug_reservation_model.py#L3
  184. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0567_add_slug_reservation_model.py#L4
  185. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0567_add_slug_reservation_model.py#L4
  186. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0567_add_slug_reservation_model.py#L50
  187. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L3
  188. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L4
  189. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L5
  190. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L5
  191. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L32
  192. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L49
  193. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0659_artifactbundleindex_cleanup.py#L58
  194. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0545_add_last_verified_auth_ident_replica.py#L3
  195. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0545_add_last_verified_auth_ident_replica.py#L4
  196. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0545_add_last_verified_auth_ident_replica.py#L4
  197. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0545_add_last_verified_auth_ident_replica.py#L43
  198. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0700_drop_fileid_controlavatar.py#L3
  199. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0700_drop_fileid_controlavatar.py#L3
  200. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0641_backfill_group_attributes.py#L10
  201. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0641_backfill_group_attributes.py#L11
  202. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0641_backfill_group_attributes.py#L12
  203. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0641_backfill_group_attributes.py#L13
  204. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0544_remove_groupsubscription_columns.py#L3
  205. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0544_remove_groupsubscription_columns.py#L3
  206. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0494_add_traceid_checkin.py#L3
  207. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0494_add_traceid_checkin.py#L3
  208. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0635_groupenvironment_index.py#L3
  209. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0635_groupenvironment_index.py#L3
  210. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0527_backfill_next_checkin_latest.py#L3
  211. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0527_backfill_next_checkin_latest.py#L3
  212. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0527_backfill_next_checkin_latest.py#L4
  213. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0527_backfill_next_checkin_latest.py#L5
  214. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0631_add_priority_columns_to_groupedmessage.py#L3
  215. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0631_add_priority_columns_to_groupedmessage.py#L3
  216. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0602_import_chunk_unique_together.py#L3
  217. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0602_import_chunk_unique_together.py#L3
  218. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0672_backfill_ukraine_timezone_name.py#L3
  219. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0672_backfill_ukraine_timezone_name.py#L3
  220. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0672_backfill_ukraine_timezone_name.py#L4
  221. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0672_backfill_ukraine_timezone_name.py#L5
  222. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0672_backfill_ukraine_timezone_name.py#L6
  223. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0671_enforce_unqiue_active_incidents.py#L3
  224. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0671_enforce_unqiue_active_incidents.py#L3
  225. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0661_artifactbundleindex_cleanup_step2.py#L3
  226. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0661_artifactbundleindex_cleanup_step2.py#L3
  227. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0528_truncate_flat_index.py#L3
  228. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0528_truncate_flat_index.py#L3
  229. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0528_truncate_flat_index.py#L4
  230. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0528_truncate_flat_index.py#L5
  231. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0626_add_member_project_creation_bitfield.py#L3
  232. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0626_add_member_project_creation_bitfield.py#L3
  233. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0680_unpickle_options_again.py#L3
  234. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0680_unpickle_options_again.py#L3
  235. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0680_unpickle_options_again.py#L4
  236. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0680_unpickle_options_again.py#L5
  237. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0537_backfill_xactor_team_and_user_ids.py#L3
  238. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0537_backfill_xactor_team_and_user_ids.py#L3
  239. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0537_backfill_xactor_team_and_user_ids.py#L4
  240. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0537_backfill_xactor_team_and_user_ids.py#L5
  241. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0616_drop_event_user_id_from_userreport_table_step_1.py#L3
  242. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0616_drop_event_user_id_from_userreport_table_step_1.py#L3
  243. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0719_querysubscription_timebox_column_deletion_db.py#L3
  244. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0719_querysubscription_timebox_column_deletion_db.py#L3
  245. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0486_integer_pr_comment_issue_list.py#L4
  246. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0486_integer_pr_comment_issue_list.py#L4
  247. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0574_backfill_weekly_report_settings.py#L3
  248. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0574_backfill_weekly_report_settings.py#L3
  249. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0574_backfill_weekly_report_settings.py#L4
  250. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0574_backfill_weekly_report_settings.py#L5
  251. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0685_alert_rule_conditons_rename_singular.py#L3
  252. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0685_alert_rule_conditons_rename_singular.py#L4
  253. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0685_alert_rule_conditons_rename_singular.py#L4
  254. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0685_alert_rule_conditons_rename_singular.py#L32
  255. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0663_artifactbundleindex_cleanup_step3.py#L3
  256. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0663_artifactbundleindex_cleanup_step3.py#L3
  257. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0650_create_sentryshot.py#L5
  258. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0650_create_sentryshot.py#L6
  259. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0650_create_sentryshot.py#L6
  260. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0650_create_sentryshot.py#L41
  261. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0506_null_boolean_fields.py#L3
  262. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0506_null_boolean_fields.py#L3
  263. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0629_eventattachment_index.py#L3
  264. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0629_eventattachment_index.py#L3
  265. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0517_backfill_pagerdutyservices_into_org_integrations.py#L3
  266. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0517_backfill_pagerdutyservices_into_org_integrations.py#L3
  267. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0517_backfill_pagerdutyservices_into_org_integrations.py#L4
  268. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0517_backfill_pagerdutyservices_into_org_integrations.py#L5
  269. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0694_db_index_alert_rule_actions.py#L3
  270. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0694_db_index_alert_rule_actions.py#L3
  271. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0531_add_notification_uuid_to_incident_activity.py#L3
  272. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0531_add_notification_uuid_to_incident_activity.py#L3
  273. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0548_add_is_unclaimed_boolean_to_user.py#L3
  274. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0548_add_is_unclaimed_boolean_to_user.py#L3
  275. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0676_apitoken_hashed_indexes.py#L3
  276. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0676_apitoken_hashed_indexes.py#L3
  277. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0516_switch_pagerduty_silo.py#L3
  278. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0516_switch_pagerduty_silo.py#L4
  279. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0516_switch_pagerduty_silo.py#L4
  280. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0516_switch_pagerduty_silo.py#L38
  281. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L3
  282. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L4
  283. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L5
  284. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L5
  285. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L42
  286. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0615_add_dashboard_widget_query_on_demand_table.py#L46
  287. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0489_index_checkin_timeout.py#L3
  288. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0489_index_checkin_timeout.py#L3
  289. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0543_add_team_id_to_groupsubscription.py#L3
  290. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0543_add_team_id_to_groupsubscription.py#L4
  291. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0543_add_team_id_to_groupsubscription.py#L4
  292. no-member:
    Module 'django' has no 'db' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0543_add_team_id_to_groupsubscription.py#L33
  293. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0535_add_created_date_to_outbox_model.py#L3
  294. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0535_add_created_date_to_outbox_model.py#L4
  295. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0535_add_created_date_to_outbox_model.py#L4
  296. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0535_add_created_date_to_outbox_model.py#L52
  297. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0535_add_created_date_to_outbox_model.py#L57
  298. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0546_backfill_fix_bad_xactors.py#L3
  299. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0546_backfill_fix_bad_xactors.py#L3
  300. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0546_backfill_fix_bad_xactors.py#L4
  301. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0546_backfill_fix_bad_xactors.py#L5
  302. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0518_cleanup_bundles_indexes.py#L3
  303. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0518_cleanup_bundles_indexes.py#L3
  304. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0542_rm_flatfile_file.py#L3
  305. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0542_rm_flatfile_file.py#L3
  306. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0686_remove_config_from_checkin_state_operation.py#L3
  307. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0686_remove_config_from_checkin_state_operation.py#L3
  308. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0688_add_project_flag_high_priority_alerts.py#L3
  309. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0688_add_project_flag_high_priority_alerts.py#L3
  310. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0643_add_date_modified_col_dashboard_widget_query.py#L3
  311. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0643_add_date_modified_col_dashboard_widget_query.py#L4
  312. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0643_add_date_modified_col_dashboard_widget_query.py#L4
  313. no-member:
    Module 'django.utils' has no 'timezone' member
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0643_add_date_modified_col_dashboard_widget_query.py#L43
  314. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0507_delete_pending_deletion_rules.py#L6
  315. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0507_delete_pending_deletion_rules.py#L6
  316. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0507_delete_pending_deletion_rules.py#L7
  317. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0507_delete_pending_deletion_rules.py#L8
  318. no-name-in-module:
    No name 'timezone' in module 'django.utils'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0507_delete_pending_deletion_rules.py#L31
  319. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0673_add_env_muted_to_broken_detection.py#L3
  320. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0673_add_env_muted_to_broken_detection.py#L3
  321. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0572_sentry_remove_unused_eventuser_index.py#L3
  322. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0572_sentry_remove_unused_eventuser_index.py#L3
  323. import-error:
    Unable to import 'django.db'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0702_alert_rule_project_backfill_migration_2.py#L6
  324. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0702_alert_rule_project_backfill_migration_2.py#L6
  325. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0702_alert_rule_project_backfill_migration_2.py#L7
  326. no-name-in-module:
    No name 'db' in module 'django'
    https://github.com/getsentry/sentry/blob/3feb64727b00b7f48520573254277de389544ffc/src/sentry/migrations/0702_aler...

This comment was truncated because GitHub allows only 65536 characters in a comment.

This comment was generated for commit 9b6f8e1

jacobtylerwalls added a commit that referenced this pull request May 16, 2024
)

(cherry picked from commit c6a9699)

Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backported False Positive 🦟 A message is emitted but nothing is wrong with the code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

possibly-used-before-assignment doesn't understand never-returning-functions
2 participants