Skip to content

Commit

Permalink
Fix diagnostics issue and add diagnostics test (#855)
Browse files Browse the repository at this point in the history
* Fix diagnostics issue and add diagnostics test

* Remove print statement

* Pre-commit fixes
  • Loading branch information
iMicknl committed May 19, 2023
1 parent e1378cb commit 1534496
Show file tree
Hide file tree
Showing 3 changed files with 9,368 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pyoverkiz/obfuscate.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ def obfuscate_sensitive_data(data: dict[str, Any]) -> JSON:
for val in value:
if isinstance(val, str):
continue
if isinstance(val, int):
continue
if isinstance(val, float):
continue
if isinstance(val, list):
continue

Expand Down
Loading

0 comments on commit 1534496

Please sign in to comment.