From 1c70d0de2628ac4a6a621337beef5898098ddda5 Mon Sep 17 00:00:00 2001 From: GeekMasher Date: Tue, 2 May 2023 14:20:27 +0100 Subject: [PATCH] feat: Reformat --- src/ghastoolkit/octokit/dependencygraph.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ghastoolkit/octokit/dependencygraph.py b/src/ghastoolkit/octokit/dependencygraph.py index 0572f00a..2b396364 100644 --- a/src/ghastoolkit/octokit/dependencygraph.py +++ b/src/ghastoolkit/octokit/dependencygraph.py @@ -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)