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

Refactor: Remove unused submodules and scripts, fix testing issues #56

Merged
merged 44 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
c903fee
Enhance documentation for the project (#41)
Ston14 Jul 2, 2024
39d1bfe
Add build docs
Jul 2, 2024
cc0b93d
Add more docs (#42)
Ston14 Jul 2, 2024
3400634
Add references (#43)
Ston14 Jul 2, 2024
7cef323
Add references
Jul 2, 2024
b0c2112
Add title
Jul 2, 2024
84e5bad
Title 2
Jul 2, 2024
6c5480f
add : mkdocs navigation references
Jul 2, 2024
a81ed48
document codes
Jul 2, 2024
da1076a
fix typo
Jul 2, 2024
738acfc
typo
Jul 2, 2024
d1bd493
fix typo
Jul 2, 2024
53a97d0
fix typo in utils
Jul 2, 2024
f2fd43f
fix docs in tutorials.md
Jul 2, 2024
0c4456c
add : How to use documentation
Jul 3, 2024
feec9b1
Add other OS documentation
Jul 3, 2024
50504a2
fix how to
Jul 3, 2024
965c4e2
fix : typo in docs
Jul 3, 2024
1567869
fix : typo
Jul 3, 2024
4af47a7
fix: typo in index
Jul 3, 2024
045a091
add : dark mode
Jul 3, 2024
79d61ab
add : colors on documentation
Jul 3, 2024
4d11ea9
fix: diataxis
Jul 3, 2024
05da208
Fix colors
Jul 3, 2024
f51db37
fix readme
Jul 3, 2024
40aa52a
Fix dumpfiles (#46)
Ston14 Jul 11, 2024
cdd3f55
fix: fix error, function without parameter return an error
Jul 12, 2024
df89499
sorry
Jul 12, 2024
1f51127
fix typing information (#47)
YannMagnin Jul 19, 2024
8d7b9d4
Fix/get plugins (#48)
Ston14 Jul 23, 2024
b9771ec
Fix: Correct dict.get() usage in TreeGrid_to_json renderer and remove…
Jul 23, 2024
8adc5aa
oops
Jul 23, 2024
1eb8a72
fix to dataframe
Jul 23, 2024
d8516d2
add test for volatility (#49)
Ston14 Jul 24, 2024
728f451
Merge branch 'master' into dev
Ston14 Jul 25, 2024
ec9ae6c
fix: poetry lock
Jul 25, 2024
a9e7c3d
fix: pytest
Jul 25, 2024
6c0bae8
Merge branch 'master' into dev
Ston14 Jul 25, 2024
78940d4
add documentation
Jul 25, 2024
42a9f17
add documentation
Jul 25, 2024
bef57d1
fix actions
Jul 25, 2024
66fa530
add references
Jul 25, 2024
7225b35
Fix dependancies (#55)
Ston14 Aug 19, 2024
97c1610
Merge branch 'master' into dev
Ston14 Aug 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fix error, function without parameter return an error
  • Loading branch information
St0n14 committed Jul 12, 2024
commit cdd3f557f87aada7f40ffe0f93037100b4c5550c
2 changes: 2 additions & 0 deletions pydfirram/core/base.py
Original file line number Diff line number Diff line change
@@ -326,6 +326,8 @@ def run_plugin(self, plugin: PluginEntry, **kwargs: Any) -> Any:
builded_context = self.context.build() # type: ignore
if kwargs:
runable_context = self.context.add_arguments(builded_context,kwargs)
else:
runable_context = builded_context
if self.context is None:
raise ValueError("Context not built.")
return runable_context.run()
2 changes: 2 additions & 0 deletions pydfirram/modules/windows.py
Original file line number Diff line number Diff line change
@@ -107,4 +107,6 @@ def dumpfiles(self,**kwargs) -> None:
builded_context = context.build()
if kwargs:
runable_context = context.add_arguments(builded_context,kwargs)
else:
runable_context = builded_context
Renderer(runable_context.run()).file_render()
Loading