manage-sql 1.0.2.dev1303__tar.gz → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: manage-sql
3
- Version: 1.0.2.dev1303
3
+ Version: 1.0.3
4
4
  Summary: Python library for managing SQLite, MySQL, and PostgreSQL databases with greater efficiency.
5
5
  Home-page: https://github.com/webtechmoz/manage-sql.git
6
6
  Author: Web Tech Moz
@@ -189,10 +189,10 @@ class SQLITE:
189
189
  """
190
190
 
191
191
  try:
192
- if condition:
192
+ if not condition:
193
193
  multiprocessing.Process(
194
194
  target=self.__sql_multiprocess.delete_data_multi,
195
- args=(tablename),
195
+ args=(tablename,),
196
196
  daemon=True
197
197
  ).start()
198
198
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: manage-sql
3
- Version: 1.0.2.dev1303
3
+ Version: 1.0.3
4
4
  Summary: Python library for managing SQLite, MySQL, and PostgreSQL databases with greater efficiency.
5
5
  Home-page: https://github.com/webtechmoz/manage-sql.git
6
6
  Author: Web Tech Moz
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='manage-sql',
5
- version='1.0.2.dev1303',
5
+ version='1.0.3',
6
6
  author='Web Tech Moz',
7
7
  author_email='zoidycine@gmail.com',
8
8
  description='Python library for managing SQLite, MySQL, and PostgreSQL databases with greater efficiency.',
File without changes
File without changes
File without changes