Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Function returns "NoneType"
#1
def collectData(file,arr,index):
    arr[index, 0] = np.fromfile(file, dtype='uint32', count=1)
    eSize = arr[index, 0] 
    
    arr[index, 1] = np.fromfile(file, dtype='uint32', count=1) 
    chan = arr[index, 1]
    
    arr[index, 2] = np.fromfile(file, dtype='uint32', count=1)
    t = arr[index, 2] 
    
    information = [eSize, chan, t]
    
    return information

x = []
x += collectData(inputFile,data,spot)
Hi, Is there any reason that this function would return "Nonetype". I have tried to add these bit sof information I am pulling from a file (which has worked in the past and is definitely not my problem) but I keep getting that this function is returning "Nonetype" or that "'NoneType' object is not iterable". Any help?
Reply


Messages In This Thread
Function returns "NoneType" - by eoins - May-22-2019, 08:28 PM
RE: Function returns "NoneType" - by buran - May-22-2019, 08:40 PM
RE: Function returns "NoneType" - by eoins - May-22-2019, 09:34 PM
RE: Function returns "NoneType" - by micseydel - May-22-2019, 10:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  function returns dataframe as list harum 2 1,417 Aug-13-2022, 08:27 PM
Last Post: rob101
  function accepts infinite parameters and returns a graph with those values edencthompson 0 868 Jun-10-2022, 03:42 PM
Last Post: edencthompson
  function that returns a list of dictionaries nostradamus64 2 1,765 May-06-2021, 09:58 PM
Last Post: nostradamus64
  Recursive function returns None, when True is expected akar 0 3,398 Sep-07-2020, 07:58 PM
Last Post: akar
  function/nonetype object is not iterable nanok66 5 4,061 May-08-2020, 07:39 PM
Last Post: nanok66
  Python function returns inconsistent results bluethundr 4 3,204 Dec-21-2019, 02:11 AM
Last Post: stullis
  class returns NoneType Object istemihan 0 2,264 Aug-12-2019, 11:47 AM
Last Post: istemihan
  Function returns memory address Joeicam 1 3,821 Feb-10-2019, 02:23 AM
Last Post: Larz60+
  Function returns unaccurate value raulfloresgp 4 2,968 Nov-23-2018, 03:39 AM
Last Post: raulfloresgp
  How to test a function that is supposed to return NoneType? w0mb4rt 1 3,496 Feb-17-2018, 07:38 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020