Skip to content

Commit

Permalink
Merge pull request #528 from koxudaxi/fix_unexpected_error_when_delet…
Browse files Browse the repository at this point in the history
…ing_project

Fix unexpected errors when deleting project
  • Loading branch information
koxudaxi authored Aug 13, 2022
2 parents 34be875 + c2cd0f4 commit 9a37f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/koxudaxi/pydantic/PydanticInitializer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PydanticInitializer : StartupActivity {
.filter {
try {
ProjectFileIndex.getInstance(project).isInContent(it)
} catch (e: AlreadyDisposedException) {
} catch (e:Exception) {
false
}
}
Expand Down

0 comments on commit 9a37f77

Please sign in to comment.