Skip to content

Instantly share code, notes, and snippets.

@jasonleibowitz
Created March 9, 2023 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonleibowitz/f35d63485a883dfa772a9bd2a801e9ed to your computer and use it in GitHub Desktop.
Save jasonleibowitz/f35d63485a883dfa772a9bd2a801e9ed to your computer and use it in GitHub Desktop.
manual_run_k1_task.py
import time
from fund_admin.tax.schedule_k1.scheduled_tasks import create_schedule_k1s_for_fund_partners
tic = time.perf_counter()
print('----------Starting K-1 Job----------')
create_schedule_k1s_for_fund_partners()
toc = time.perf_counter()
print(f'Job completed in {toc - tic:0.4f} second')
print('----------Completed K-1 Job----------')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment