From 1c1807ef6d8ac519a28e853b7d8892a91b407ee3 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Jul 03 2023 21:13:43 +0000 Subject: drop stray typing hint typo from https://pagure.io/koji/pull-request/3679 --- diff --git a/vm/kojivmd b/vm/kojivmd index 68a6741..d6c0157 100755 --- a/vm/kojivmd +++ b/vm/kojivmd @@ -88,7 +88,7 @@ class LibvirtCallable(object): class LibvirtConnection(object): # Wrapper class for libvirt connection retrying calls failed on libvirt connection # e.g. libvirtd restart. Without it kojivmd stucks in main loop - def __init__(self) -> None: + def __init__(self): self._conn = libvirt.open(None) def __getattr__(self, name):