From 6f90800001159ed95b49fce9a0f3ccd6485083e0 Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Mon, 13 Feb 2023 09:57:12 +0000 Subject: [PATCH] Rename attribute_wrapper directory for casing --- {Attribute_wrapper => attribute_wrapper}/__init__.py | 0 {Attribute_wrapper => attribute_wrapper}/attribute_wrapper.py | 0 tests/test_attr_wrapper.py | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename {Attribute_wrapper => attribute_wrapper}/__init__.py (100%) rename {Attribute_wrapper => attribute_wrapper}/attribute_wrapper.py (100%) diff --git a/Attribute_wrapper/__init__.py b/attribute_wrapper/__init__.py similarity index 100% rename from Attribute_wrapper/__init__.py rename to attribute_wrapper/__init__.py diff --git a/Attribute_wrapper/attribute_wrapper.py b/attribute_wrapper/attribute_wrapper.py similarity index 100% rename from Attribute_wrapper/attribute_wrapper.py rename to attribute_wrapper/attribute_wrapper.py diff --git a/tests/test_attr_wrapper.py b/tests/test_attr_wrapper.py index 979c851..b355c07 100644 --- a/tests/test_attr_wrapper.py +++ b/tests/test_attr_wrapper.py @@ -17,7 +17,7 @@ from tango.server import attribute, command, Device, DeviceMeta # Test imports from tango.test_context import DeviceTestContext -from Attribute_wrapper.attribute_wrapper import AttributeWrapper +from attribute_wrapper.attribute_wrapper import AttributeWrapper # Internal imports from test_client import TestClient -- GitLab