2026-01-27 13:26:10 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
2026-02-17 12:24:12 +01:00
|
|
|
from ..BeRefresh import BeRefresh as Base
|
2026-01-27 13:26:10 +01:00
|
|
|
|
2026-02-17 12:24:12 +01:00
|
|
|
class Refresh(Base):
|
2026-01-27 13:26:10 +01:00
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
async def run(self, args: Namespace):
|
2026-02-26 15:55:52 +01:00
|
|
|
return await self.util.zypper(['refresh'])
|