From 654bd9f61569c3cc0cc02514c6c333257124431c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9o=20Baras?= Date: Fri, 2 Apr 2021 11:52:08 +0200 Subject: [PATCH] Renomme ressource.py => ressourcedocx.py --- python/export_docx_to_yaml.py | 2 +- python/export_yaml_to_latex.py | 2 +- python/{ressource.py => ressourcedocx.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename python/{ressource.py => ressourcedocx.py} (100%) diff --git a/python/export_docx_to_yaml.py b/python/export_docx_to_yaml.py index 657f99a..c641a31 100644 --- a/python/export_docx_to_yaml.py +++ b/python/export_docx_to_yaml.py @@ -1,6 +1,6 @@ import docx2python -from ressource import * +from ressourcedocx import * import logging __LOGGER = logging.getLogger(__name__) diff --git a/python/export_yaml_to_latex.py b/python/export_yaml_to_latex.py index 52c1fa3..baa0a15 100644 --- a/python/export_yaml_to_latex.py +++ b/python/export_yaml_to_latex.py @@ -1,6 +1,6 @@ import os -from ressource import * +from ressourcedocx import * import logging __LOGGER = logging.getLogger(__name__) diff --git a/python/ressource.py b/python/ressourcedocx.py similarity index 100% rename from python/ressource.py rename to python/ressourcedocx.py