chtoolbox 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/PKG-INFO +1 -1
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox/misc.py +13 -1
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox.egg-info/PKG-INFO +1 -1
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/setup.py +1 -1
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/LICENSE +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/README.md +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox/__init__.py +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox.egg-info/SOURCES.txt +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox.egg-info/dependency_links.txt +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox.egg-info/requires.txt +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/chtoolbox.egg-info/top_level.txt +0 -0
- {chtoolbox-0.2.2 → chtoolbox-0.2.3}/setup.cfg +0 -0
|
@@ -121,4 +121,16 @@ def compare_lists_from_clipboard():
|
|
|
121
121
|
unique_items.append(value)
|
|
122
122
|
|
|
123
123
|
# Print the resulting dictionary
|
|
124
|
-
return list_dict, unique_items, list(common_items)
|
|
124
|
+
return list_dict, unique_items, list(common_items)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
def add_two_numbers(a,b):
|
|
128
|
+
"""
|
|
129
|
+
Add two numbers together.
|
|
130
|
+
Args:
|
|
131
|
+
a (int): The first number.
|
|
132
|
+
b (int): The second number.
|
|
133
|
+
Returns:
|
|
134
|
+
int: The sum of the two numbers.
|
|
135
|
+
"""
|
|
136
|
+
return a + b
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|