-
Notifications
You must be signed in to change notification settings - Fork 1
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
Kn/x #35
Kn/x #35
Conversation
…ui edge cases, split of several functions, even more tests
…ui edge cases, split of several functions, corrected tests
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files |
except KeyError as error_log: | ||
nfo("%s", "No key found.", error_log) | ||
return {"": UpField.PLACEHOLDER, " ": UpField.PLACEHOLDER} | ||
return pack_prompt(sorted_header_data), {k: v for k, v in sorted_header_data.items() if k not in NodeNames.PROMPT_LABELS and k not in NodeNames.PROMPT_NODE_FIELDS} |
Check warning
Code scanning / Prospector (reported by Codacy)
line too long (167 > 159 characters) (E501) Warning
if float(python_version_tuple()[0]) == 3.0 and float(python_version_tuple()[1]) <= 12.0: | ||
from typing_extensions import TypedDict, Annotated, List, Union | ||
else: | ||
from typing import TypedDict, Annotated, List, Union |
Check warning
Code scanning / Pylint (reported by Codacy)
No name 'Annotated' in module 'typing' Warning
if float(python_version_tuple()[0]) == 3.0 and float(python_version_tuple()[1]) <= 12.0: | ||
from typing_extensions import TypedDict, Annotated, List, Union | ||
else: | ||
from typing import TypedDict, Annotated, List, Union |
Check warning
Code scanning / Pylint (reported by Codacy)
No name 'TypedDict' in module 'typing' Warning
inputs: Union[dict, float] | ||
|
||
|
||
class NodeWorkflow(TypedDict): |
Check warning
Code scanning / Pylint (reported by Codacy)
Missing class docstring Warning
@@ -82,9 +82,9 @@ | |||
return wrapper | |||
|
|||
|
|||
def debug_message(message, *args): | |||
logger.debug("%s", f"{message} {args}") | |||
def debug_message(*args): |
Check warning
Code scanning / Pylint (reported by Codacy)
Missing function docstring Warning
Eh apart from codeQL being a little stingy, looks good! |
Dynamic handling of type dependencies, metadata adjustments for comfyui edge cases, split of several functions, corrected tests