mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 03:34:15 +02:00
[arch] fix -> uninstall: not detecting hard requirements properly
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class PackageNotFoundException(Exception):
|
||||
|
||||
def __init__(self, name: str):
|
||||
self.name = name
|
||||
|
||||
|
||||
class PackageInHoldException(Exception):
|
||||
|
||||
def __init__(self, name: Optional[str] = None):
|
||||
self.name = name
|
||||
|
||||
Reference in New Issue
Block a user