Skip to content

Commit 959fd63

Browse files
committed
Fix black formatting issues
- Format tests/test_ci.py with black - Format pygetpapers/repositories/__init__.py with black - Format pygetpapers/tools/__init__.py with black All files now pass black --check
1 parent 184d7a9 commit 959fd63

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Repositories package for pygetpapers.
3+
"""

pygetpapers/tools/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Tools package for pygetpapers.
3+
"""

tests/test_ci.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ def test_imports():
4848
# def test_streamlit_app():
4949
# """Test that the Streamlit app can be imported"""
5050
# print("\n🧪 Testing Streamlit app...")
51-
#
51+
#
5252
# try:
5353
# # Test if the module can be imported
5454
# import pygetpapers.streamlit_app
55-
#
55+
#
5656
# # Access a simple attribute to ensure it's actually imported
5757
# _ = pygetpapers.streamlit_app.__name__
58-
#
58+
#
5959
# print("✅ Streamlit app imported successfully")
6060
# return True
6161
# except ImportError as e:
@@ -66,14 +66,14 @@ def test_imports():
6666
# def test_datatables():
6767
# """Test that datatables integration can be imported"""
6868
# print("\n🧪 Testing datatables integration...")
69-
#
69+
#
7070
# try:
7171
# # Test if the module can be imported
7272
# import pygetpapers.tools.datatables_integration
73-
#
73+
#
7474
# # Access a simple attribute to ensure it's actually imported
7575
# _ = pygetpapers.tools.datatables_integration.__name__
76-
#
76+
#
7777
# print("✅ Datatables integration imported successfully")
7878
# return True
7979
# except ImportError as e:

0 commit comments

Comments
 (0)