Skip to content

Commit 6f34416

Browse files
author
Melissa LeBlanc-Williams
committed
Removed weird space-looking character
1 parent 7b2c456 commit 6f34416

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

adafruit_featherwing/rtc_featherwing.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -292,20 +292,12 @@ def unixtime(self):
292292
try:
293293
return time.mktime(self._rtc.datetime)
294294
except (ValueError, RuntimeError) as error:
295-
<<<<<<< Updated upstream
296-
print("There was an error attempting to run time.mktime() on this board")
297-
=======
298295
print("Error attempting to run time.mktime() on this board\n", error)
299-
>>>>>>> Stashed changes
300296

301297
@unixtime.setter
302298
def unixtime(self, unixtime):
303299
if isinstance(unixtime, int):
304300
try:
305301
self._rtc.datetime = time.localtime(unixtime)
306302
except (ValueError, RuntimeError) as error:
307-
<<<<<<< Updated upstream
308-
print("There was an error attempting to run time.localtime() on this board")
309-
=======
310303
print("Error attempting to run time.localtime() on this board\n", error)
311-
>>>>>>> Stashed changes

0 commit comments

Comments
 (0)