Skip to content

Commit

Permalink
Fix for mypy (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
vallbull authored May 16, 2024
1 parent c250232 commit f5f1e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dl_api_commons/dl_api_commons/base_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_outbound_tenancy_headers(self) -> dict[DLHeaders, str]:
def get_tenant_id(self) -> str:
raise NotImplementedError()

def get_reporting_extra(self) -> dict[str, str]:
def get_reporting_extra(self) -> dict[str, str | None]:
return dict(
billing_folder_id=self.get_tenant_id(),
)
Expand Down

0 comments on commit f5f1e16

Please sign in to comment.