Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and twizmwazin committed Jul 13, 2023
1 parent 0ccbb11 commit cc0357e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions angrmanagement/plugins/plugin_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class PackageDescription:
"""
Describes a plugin package.
"""

name: str = field()
version: str = field()
platforms: List[str] = field(default_factory=lambda: ["any"])
Expand All @@ -32,6 +33,7 @@ class PluginDescription:
"""
Describes an angr management plugin. Can be generated from plugin.toml.
"""

name: str = field()
entrypoint: str = field()
platforms: Optional[List[str]] = field(default=None)
Expand All @@ -44,6 +46,7 @@ class PluginConfigFileDescription:
"""
Describes a plugin config file.
"""

metadata: MetadataDescription = field()
package: PackageDescription = field()
plugins: Dict[str, PluginDescription] = field(default_factory=dict)
Expand Down

0 comments on commit cc0357e

Please sign in to comment.