mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-13 10:22:20 +03:00
9 lines
224 B
Python
9 lines
224 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
|
|
|
class SetupTimer:
|
|
@staticmethod
|
|
def start(timer):
|
|
timer.setDaemon(True)
|
|
timer.start()
|