Skip to content

Commit

Permalink
feat: Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekMasher committed May 2, 2023
1 parent 11242ae commit 1c70d0d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ghastoolkit/octokit/dependencygraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ def findLicenses(self, licenses: list[str]) -> "Dependencies":
]
)

def findUnknownLicenses(self, licenses: Optional[list[str]] = None) -> "Dependencies":
def findUnknownLicenses(
self, licenses: Optional[list[str]] = None
) -> "Dependencies":
licenses = licenses or ["NA", "NOASSERTION"]
return self.findLicenses(licenses)

Expand Down

0 comments on commit 1c70d0d

Please sign in to comment.