plexpy/lib/dns/rrset.pyi
dependabot[bot] 3c93b5600f
Bump dnspython from 2.0.0 to 2.2.0 (#1618)
* Bump dnspython from 2.0.0 to 2.2.0

Bumps [dnspython]() from 2.0.0 to 2.2.0.

---
updated-dependencies:
- dependency-name: dnspython
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update dnspython==2.2.0

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>

[skip ci]
2022-01-25 11:08:24 -08:00

11 lines
394 B
Python

from typing import List, Optional
from . import rdataset, rdatatype
class RRset(rdataset.Rdataset):
def __init__(self, name, rdclass : int , rdtype : int, covers=rdatatype.NONE,
deleting : Optional[int] =None) -> None:
self.name = name
self.deleting = deleting
def from_text(name : str, ttl : int, rdclass : str, rdtype : str, *text_rdatas : str):
...