Skip to content

Commit

Permalink
<Update>[PluginProject]: <Need fully qualified file name>
Browse files Browse the repository at this point in the history
[]

[]
  • Loading branch information
Humberto Sanchez II committed Oct 24, 2022
1 parent c68f30d commit 32d5c3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/types/Types.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ class PluginProject:
"""
This is a plugin's version of a project
"""
fileName: str = cast(str, None)
projectName: str = cast(str, None)
version: str = cast(str, None)
codePath: str = cast(str, None)
Expand Down
1 change: 1 addition & 0 deletions plugins/io/IOXml.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def read(self) -> bool:

pluginProject: PluginProject = PluginProject()

pluginProject.fileName = self._fileToImport
pluginProject.projectName = PluginProject.toProjectName(fqFilename=self._fileToImport)
pluginProject.version = oglProject.version
pluginProject.codePath = oglProject.codePath
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="pyutplugincore",
version="0.5.7",
version="0.5.8",
author='Humberto A. Sanchez II',
author_email='[email protected]',
maintainer='Humberto A. Sanchez II',
Expand Down

0 comments on commit 32d5c3b

Please sign in to comment.