Skip to content

Commit

Permalink
pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevhe18 committed Jun 16, 2024
1 parent 88c21d2 commit f9dd9ac
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import logging
from datetime import datetime, timedelta

import pandas as pd
import pytz
import requests

Expand All @@ -14,6 +13,13 @@

_logger = logging.getLogger(__name__)

_logger = logging.getLogger(__name__)

try:
import pandas as pd
except (ImportError, IOError) as err:
_logger.debug(err)


class FingerspotMachineTransactionWizard(models.TransientModel):
_name = "fingerspot.attendance.machine.import.wizard"
Expand Down

0 comments on commit f9dd9ac

Please sign in to comment.