Skip to content

Commit

Permalink
fix(build): Typed git vars were unassigned
Browse files Browse the repository at this point in the history
  • Loading branch information
in03 committed Feb 9, 2023
1 parent b783acc commit ad53709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/proxima/app/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def __init__(self, package_name: str, package_path: str):
self.package_name = package_name
self.package_path = package_path

self.git_sha: str | None
self.git_url: str | None
self.git_sha: str | None = None
self.git_url: str | None = None

try:
self.repo = Repo(self.package_path, search_parent_directories=True)
Expand Down

0 comments on commit ad53709

Please sign in to comment.