Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lutris / usr / lib / python3 / dist-packages / lutris / directories.py
Size: Mime:
"""Directory management for runners"""


class RunnerDirectory:

    """Class to reference and manipulate directories used by folders"""

    def __init__(self, path):
        self.path = path

    def __str__(self):
        return self.path


# That's it for now. There's literally no code at all. Still figuring things
# out here.