Skip to content

Commit

Permalink
Fixes typing issues (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmesel authored Jan 19, 2024
1 parent da1ff60 commit cd7e0d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_restaurant365/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ class EmployeesStream(Restaurant365Stream):
th.Property("address1", th.StringType),
th.Property("address2", th.StringType),
th.Property("allowTextMessaging", th.BooleanType),
th.Property("birthdayDay", th.StringType),
th.Property("birthdayMonth", th.StringType),
th.Property("birthdayDay", th.NumberType),
th.Property("birthdayMonth", th.NumberType),
th.Property("city", th.StringType),
th.Property("firstName", th.StringType),
th.Property("hireDate", th.DateTimeType),
Expand Down

0 comments on commit cd7e0d8

Please sign in to comment.