git attributes

This commit is contained in:
deunix-educ
2022-01-12 09:08:42 +01:00
parent 14ffd11165
commit bbea7f1016
3 changed files with 19 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
*.py linguist-detectable=true
*.html linguist-detectable=true
*.css linguist-detectable=false
*.js linguist-detectable=false
+13 -1
View File
@@ -1,8 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project> <?eclipse-pydev version="1.0"?><pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python3</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python3.9</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property> <pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH"> <pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/${PROJECT_DIR_NAME}/smsquitto</path> <path>/${PROJECT_DIR_NAME}/smsquitto</path>
</pydev_pathproperty> </pydev_pathproperty>
</pydev_project> </pydev_project>
+1
View File
@@ -14,6 +14,7 @@ def yaml_load(f):
return yaml.load(stream, Loader=yaml.FullLoader) return yaml.load(stream, Loader=yaml.FullLoader)
return {} return {}
class ClientMQTTBase(mqtt.Client): class ClientMQTTBase(mqtt.Client):
def __init__(self, def __init__(self,
host='localhost', host='localhost',