Skip to content

Commit

Permalink
removing print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
labhvam5 committed Nov 16, 2023
1 parent dcbe212 commit 2601946
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ COPY . /fyle-qbo-api/
WORKDIR /fyle-qbo-api

# Do linting checks
# RUN flake8 .
RUN flake8 .

# Expose development port
EXPOSE 8000
Expand Down
7 changes: 0 additions & 7 deletions apps/mappings/queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,6 @@ def construct_tasks_and_chain_import_fields_to_fyle(workspace_id):
mapping_settings = MappingSetting.objects.filter(workspace_id=workspace_id, import_to_fyle=True)
credentials = QBOCredential.objects.get(workspace_id=workspace_id)


print("""
construct_tasks_and_chain_import_fields_to_fyle
""")

task_settings: TaskSettings = {
'import_tax': None,
'import_vendors_as_merchants': None,
Expand Down
6 changes: 0 additions & 6 deletions apps/quickbooks_online/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,12 +374,6 @@ def sync_customers(self):
"""
Get customers
"""
print("""
sync_customers
""")
customers_count = self.connection.customers.count()
if customers_count < SYNC_UPPER_LIMIT['customers']:
customers = self.connection.customers.get()
Expand Down
2 changes: 1 addition & 1 deletion fyle_integrations_imports

0 comments on commit 2601946

Please sign in to comment.