This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
NETFLIX-DL-6.1.0/utils/modules/kanji_to_romaji/models/Particle.py
widevinedump c4e6ea37a8 0es12
2021-12-28 03:24:34 +05:30

7 lines
200 B
Python

class Particle(str):
def __new__(cls, *args, **kwargs):
particle_str = args[0]
obj = str.__new__(cls, " " + particle_str + " ")
obj.pname = particle_str
return obj