We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88a2d96 commit baff150Copy full SHA for baff150
socketdev/fullscans/__init__.py
@@ -766,10 +766,10 @@ def stream_diff(
766
before: str,
767
after: str,
768
use_types: bool = True,
769
- include_license_details: bool = False,
+ include_license_details: bool = True,
770
**kwargs,
771
) -> Union[dict, StreamDiffResponse]:
772
- path = f"orgs/{org_slug}/full-scans/diff?before={before}&after={after}&{include_license_details}"
+ path = f"orgs/{org_slug}/full-scans/diff?before={before}&after={after}&include_license_details={include_license_details}"
773
if kwargs:
774
for key, value in kwargs.items():
775
path += f"&{key}={value}"
0 commit comments