mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-11 00:02:16 +03:00
10 lines
224 B
Python
10 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()
|