Files
proxy-scraper-checker/proxy_scraper_checker/incrementor.py
T
2025-02-27 11:12:52 +03:00

15 lines
260 B
Python

from __future__ import annotations
class Incrementor:
__slots__ = ("_value",)
def __init__(self) -> None:
self._value = 0
def get_value(self) -> int:
return self._value
def increment(self) -> None:
self._value += 1