forked from public/mirror-checker
10 lines
95 B
Python
10 lines
95 B
Python
|
"""
|
||
|
Contains Arch class
|
||
|
"""
|
||
|
|
||
|
from distro import Distro
|
||
|
|
||
|
|
||
|
class Arch(Distro):
|
||
|
"""Arch class"""
|